-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (67 loc) · 1.13 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
body, html {
font-family: Helvetica, sans-serif;
width: 100%;
min-width: 850px;
}
a:link { text-decoration: none; color: inherit;}
a:visited { text-decoration: none; color: inherit;}
a:hover { text-decoration: none; color: inherit;}
a:active { text-decoration: none; color: inherit;}
/* HEADER -- FOOTER */
header {
display: flex;
}
footer {
width: 850px;
margin: 15px auto;
}
/* PAGE STYLING */
.title {
color: #025D29;
width: 10em;
text-align: left;
margin-left: 2em;
}
.page-title {
margin: auto 0;
}
nav {
margin : auto 0;
display: flex;
}
.nav-p {
margin : auto 10px;
font-weight: bold;
}
.nav-p:hover {
text-decoration: underline;
color: #4169E1;
}
main {
margin: 0 auto;
width: 850px;
}
.content {
font-size: 1.4em;
line-height: 1.4em;
}
/* SPECIFIC TEXT STYLE */
.links {
color: #025D29;
}
.small-grey {
font-style: italic;
color: dimgray;
font-size: 0.7em;
}
/* HOME PAGE */
#profile-links {
font-size: 1em;
}
/* BLOG */
.post-date {
color: dimgray;
font-size: 0.6em;
margin: 0;
margin-bottom: -1.5em;
}