-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefault.css
executable file
·73 lines (59 loc) · 975 Bytes
/
default.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
html {
margin: 0;
}
body {
background-color: #ece4d8;
color: #333333;
font-family: 'Helvetica', 'Arial', sans-serif;
font-size: 1.1em;
line-height: 1.5em;
max-width: 100%;
margin-left: auto;
margin-right: auto;
width: 80%;
}
h1, h2, h3, h4, h5, h6 {
line-height: 1.25em;
}
h1 {
font-size: 2.25em;
}
p {
margin: 0 0 0.75em;
}
a {
color: #477dca;
text-decoration: none;
transition: color 0.1s linear;
}
a:hover {
color: #2c5999;
}
a:active, a:focus {
color: #2c5999;
outline: none;
}
header {
margin-bottom: 3em;
padding: 2em 0;
text-align: center;
}
details {
margin-bottom: 3em;
}
details h2 {
font-size: 1.5em;
}
footer {
padding: 1em 0 3em 0;
}
iframe {
border: 0;
}
blockquote {
border: 2px solid #7c334f;
border-radius: 6px;
}
img {
box-shadow: 10px 10px 15px grey;
}