-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
79 lines (68 loc) · 1.27 KB
/
index.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
/* Variables */
:root {
--background-color: #f5f5f4;
--text-color: #333;
--window-border-radius: 6px;
--font-size: 14px;
}
/* The arrow at the top of the window */
.header-arrow {
position: absolute;
top: 2px;
left: 50%;
margin-left: -5px;
height: 10px;
width: 10px;
transform: rotate(45deg);
background-color: #e8e6e8;
}
.window {
position: absolute;
top: 5px;
}
.toolbar {
box-shadow: none;
}
.window, .toolbar-header {
border-top-left-radius: var(--window-border-radius);
border-top-right-radius: var(--window-border-radius);
}
.window-content {
background-color: var(--background-color);
}
.column {
width: 50%;
float: left;
margin: auto;
margin-top: 16px;
text-align: center;
}
.summary {
width: 100%;
margin: auto;
text-align: center;
margin-top: 16px;
font-size: var(--font-size);
font-weight: 300;
color: var(--text-color);
}
.reading {
font-size: calc(var(--font-size) + 6px);
font-weight: 300;
color: var(--text-color);
}
.description {
text-transform: uppercase;
color: #666;
font-size: calc(var(--font-size) - 3px);
font-weight: 300;
}
.footer-link {
padding-top: 8px;
padding-left: 10px;
font-size: calc(var(--font-size) - 4px);
float: left;
}
.footer-link a {
color: var(--text-color);
}