-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
executable file
·73 lines (70 loc) · 1.46 KB
/
main.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
body {
margin: 0;
background-color: white;
display: block;
font-family: 'Chonburi', sans-serif;
font-size: 10px;
text-align: center;
}
#title {
margin: 20px 0;
font-size: 3em;
line-height: 1em;
}
.no {
color: salmon;
}
.yes {
color: DarkSlateBlue;
}
.image {
cursor: pointer;
}
.button {
display: inline-block;
padding: 0.5em;
text-align: center;
font-family: sans-serif;
font-size: 1em;
border: 1px solid black;
background-color: white;
}
.button#button-no {
border-color: salmon;
color: salmon;
}
.button#button-yes {
border-color: DarkSlateBlue;
color: DarkSlateBlue;
}
.button#button-order {
border-color: black;
color: black;
}
.button:hover {
cursor: pointer;
}
.button.highlighted:hover {
cursor: default;
}
.button.highlighted#button-no, .button:hover#button-no {
background-color: salmon;
color: white;
}
.button.highlighted#button-yes, .button:hover#button-yes {
background-color: DarkSlateBlue;
color: white;
}
.button.highlighted#button-order, .button:hover#button-order {
background-color: black;
color: white;
}
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}