-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (84 loc) · 1.37 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
89
90
91
92
93
94
95
96
97
98
99
/* || General Setup */
html, body {
margin: 0;
padding: 0;
}
html {
font-family: "Lora", serif;
background-color:#2c2a33 ;
}
body{
width: "device-width";
margin: 0 auto;
}
/* Navbar */
.navbar {
display: table;
position: fixed;
width: 100%;
height: 5%;
max-height: 50px;
background-color:#423f4d;
}
.navbar-sitename {
display: table-cell;
color: antiquewhite;
text-decoration: none;
vertical-align: middle;
float: center ;
margin: 0 auto;
padding-left: 15px;
text-size-adjust: auto;
font-size: x-large;
}
.navbar-list {
padding: 15px;
float: right;
}
.navbar-list > li {
color: antiquewhite;
vertical-align: middle;
display: inline;
padding-left: 20px;
padding-right: 20px;
font-size: 1.2vw;
}
.navbar-list > li > a {
text-decoration: none;
color: antiquewhite;
}
.navbar:after {
}
.article-bio{
margin-left: auto;
margin-right: auto;
text-align: center;
width: 60%;
}
.content {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 100%;
max-height: 100%;
}
h1, h3 {
padding-top: 10px;
color:antiquewhite;
text-align: center;
}
p {
color: antiquewhite;
text-align: center;
}
main {
padding: 5rem 0 2.5rem 0;
}
footer:before {
content: "";
display: block;
margin: 0 auto;
width: 80%;
padding-top: 20px;
border-top: 1px solid antiquewhite;
}