-
Notifications
You must be signed in to change notification settings - Fork 0
/
pasfoto_generator.css
87 lines (73 loc) · 1.5 KB
/
pasfoto_generator.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
Free Pirateparty photo generator v1.1
Made by Joshua (TheYOSH) Rubingh for Piratenpartij Nederland - 10 Sept 2016
This script uses the latest HTML5 techniques for offline file reading and manipulation.
No data is uploaded to the server. All graphical calculation is done in the local browser.
*/
h2 {
margin-top: 10px !important;
clear: both;
}
.generator_menu {
float: left;
width: 45%;
}
.generator_preview {
float: right;
width: 55%;
text-align: right;
}
div.overlay {
border: solid 1px #876fa1;
float: left;
width: 75px;
height: 75px;
margin-right: 5px;
margin-bottom: 10px;
position: relative;
}
div.overlay:hover,
div.overlay.checked,
table.position td:hover,
table.position td.checked {
background-color: #876fa1;
}
div.overlay input {
visibility: hidden;
}
div.overlay img {
position: absolute;
width: 100%;
top: 0px;
left: 0px;
}
table.position {
border: solid 1px #876fa1;
width: 200px;
height: 200px;
margin: 0px 0px 0px 0px;
}
table.position td {
vertical-align: middle;
text-align: center;
border: solid 1px #876fa1;
}
table.position input {
visibility: hidden;
}
a.download_button {
appearance: button !important;
-moz-appearance: button !important;
-webkit-appearance: button !important;
text-decoration: none !important;
color: white !important;
border: solid 1px #876fa1;
padding: 0.6em;
background-color: #876fa1;
}
@media screen and (max-width:900px) {
.generator_menu,
.generator_preview {
width: 100%;
}
}