-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
57 lines (57 loc) · 971 Bytes
/
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
body {
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333;
}
.container {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
h1 {
font-size: 36px;
margin-top: 20px;
margin-bottom: 10px;
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
p {
margin: 0 0 10px;
}
code {
padding: 2px 4px;
font-size: 90%;
color: #c7254e;
background-color: #f9f2f4;
border-radius: 4px;
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
#box {
display: flex;
flex-flow: row wrap;
}
.square {
height: 300px;
width: 300px;
font-size: 28px;
display: flex;
flex: 1 1 auto;
justify-content: center;
align-items: center;
}
a.dark {
color: #333;
text-decoration: none;
}
a.light {
color: #EEE;
text-decoration: none;
}
a.light:hover, a.dark:hover {
text-decoration: underline;
}