-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
70 lines (58 loc) · 1.14 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
@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Caption:wght@400;700&display=swap');
body {
font-family: 'PT Sans Caption', sans-serif;
margin: 0;
text-align: center;
}
button {
background-color: #bbb;
border: 1px solid currentColor;
display: inline-block;
font-family: inherit;
}
button:enabled { cursor: pointer; }
button:disabled { color: #999; }
a:hover, a:focus, button:enabled:hover, button:enabled:focus {
background-color: currentColor;
background-image:
linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
outline: none;
}
.bar {
position: relative;
}
.bar:before {
background-color: #bbb;
content: "";
display: block;
height: 1px;
left: 16px;
position: absolute;
right: 16px;
top: 50%;
z-index: -1;
}
.bar > * {
background-color: white;
border: 1px solid currentColor;
}
.red { color: #c66; }
.blue { color: #66c; }
.yellow { color: #cc0; }
.purple { color: #c0c; }
section {
max-width: 480px;
margin: auto;
}
dl {
text-align: left;
}
dt {
float: left;
font-weight: bold;
width: 100px;
}
dd {
margin-bottom: 10px;
margin-left: 100px;
}