-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (80 loc) · 1.72 KB
/
style.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
88
89
90
body {
width: 500px;
font-family: Helvetica, Verdana;
margin: 0 auto;
}
#wait_time {
font-weight: bold;
}
.clippy {
padding-top: 30px;
display: block;
margin: 0 auto;
}
.hidden {
display: none;
}
footer {
font-size: 0.8em;
text-align: center;
margin-top: 50px;
}
.bubble {
font-family: Tahoma, Arial;
display: block;
background-color: #FFFFC9;
position: relative;
padding: 10px;
border: #000000 solid 1px;
border-radius: 10px;
margin-top: 50px;
}
.bubble:after {
content: "";
position: absolute;
bottom: -20px;
left: 50%;
border-style: solid;
border-width: 20px 20px 0 0;
border-color: #FFFFC9 transparent;
display: block;
width: 0;
z-index: 1;
}
.bubble:before {
content: "";
position: absolute;
bottom: -21px;
left: 50%;
border-style: solid;
border-width: 20px 20px 0 0;
border-color: #000000 transparent;
display: block;
width: 0;
z-index: 0;
box-shadow: -1px 0 0 #000;
}
.bubble ul {
list-style: none;
padding-left: 0;
}
.bubble ul li {
padding: 0;
padding-left: 1.5em;
}
.bubble ul li:before {
position: relative;
display: block;
height: 10px;
width: 10px;
left: -1.5em;
top: .9em;
background: #092a5d;
background: -webkit-radial-gradient(60% 60%, circle, #0D3056 0%,#4effe8 0%,#1186cb 30%,#0D3056 100%);
background: -moz-radial-gradient(60% 60%, circle, #0D3056 0%,#4effe8 0%,#1186cb 30%,#0D3056 100%);
background: -o-radial-gradient(60% 60%, circle, #0D3056 0%,#4effe8 0%,#1186cb 30%,#0D3056 100%);
background: -ms-radial-gradient(60% 60%, circle, #0D3056 0%,#4effe8 0%,#1186cb 30%,#0D3056 100%);
background: radial-gradient(60% 60%, circle, #0D3056 0%,#4effe8 0%,#1186cb 30%,#0D3056 100%);
border-radius: 50%;
content: "";
}