-
Notifications
You must be signed in to change notification settings - Fork 0
/
hexa.css
86 lines (69 loc) · 930 Bytes
/
hexa.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
html,
body {
margin: 0;
border: 0;
padding: 0;
}
body.hide_images .triangle_image{
display: none;
}
body.hide_text text{
display: none;
}
body.hide_text text.never_hide{
display: inline;
}
#intro {
padding: 2em;
}
svg {
margin-bottom: 2em;
}
#controls {
display: flex;
}
[hidden] {
display: none;
}
#controls > * {
flex: 1;
padding: 2em;
}
#controls form {
display: flex;
flex-direction: column;
padding: 2em;
}
.on_top polygon{
fill: transparent;
}
.on_top.has_text polygon{
fill: #FFF;
}
#options label {
text-align: right;
}
#options input {
width: 70%;
}
#controls form > * {
padding: 0.2em;
margin: 2px;
}
#hex {
flex: 0 0 350px;
padding: 2em;
}
#download-file {
background-color: green;
color: white;
font-size: 1.2em;
padding: 0.5em 0.8em;
border-radius: 0.5em;
margin-top: 1em;
}
@media print {
.noprint {
display: none !important;
}
}