-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (63 loc) · 1.21 KB
/
style.css
File metadata and controls
79 lines (63 loc) · 1.21 KB
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
body {
width: 180px;
}
#buttons {
display: none;
}
a.button {
display: inline-block;
padding:0.46em 1.6em;
border:0.1em solid #000000;
margin:0 0.2em 0.2em 0;
border-radius:0.12em;
box-sizing: border-box;
text-decoration: none;
font-family: Lucida Sans Unicode,Arial,Helvetica,sans-serif;
font-weight:200;
color:#000000;
text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
text-align:center;
transition: all 0.15s;
width: 180px;
user-select: none;
}
a.button:hover {
color:#ffffff;
cursor: pointer;
}
a.button:active {
text-shadow: 0 0 2em rgba(255,255,255,1);
}
#settings, #close {
margin-top: 5px;
margin-bottom: 0px;
color:#000000;
text-shadow: 0 0 2em rgba(255,255,255,1);
}
#settings:hover, #close:hover {
text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
}
#settings:active, #close:active {
text-shadow: 0 0 2em rgba(255,255,255,1);
}
.settings {
display: none;
}
.blue {
background-color:#3385ff;
}
.green {
background-color:#00b33c;
}
.orange {
background-color:#ff751a;
}
.purple {
background-color:#ac00e6;
}
.red {
background-color:#ff0000;
}
.yellow {
background-color:#ffff00;
}