-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
97 lines (86 loc) · 1.45 KB
/
Copy pathmain.css
File metadata and controls
97 lines (86 loc) · 1.45 KB
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
html {
background-color: #6E8394
}
/** Body styling **/
body {
margin: 0;
padding: 0;
font-size: 1.0em;
line-height: 1.0em;
font-family: 'Playfair Display', serif;
font-weight: normal;
color: #C6D7E1;
}
/** Navigation bar styling **/
nav {
background: white;
padding: 0;
margin: 0;
font-size: 0.8em;
color: #405D6B;
}
nav a {
display:inline-block;
padding: 10px 10px;
transition: all .3s;
color: #405D6B;
text-decoration: none;
font-size: 0.8em;
}
nav a:hover {
background: #6E8394;
color: white;
}
/** Headings styling **/
header#main-header >h1 {
text-align: center;
color: #C6D7E1;
font-size: 2.5em;
letter-spacing: 1px;
}
header#main-header >h2{
text-align: center;
color: #C6D7E1;
font-size: 2em;
letter-spacing: 1px;
}
header#main-header >img{
display: block;
margin: auto;
width: 25%;
}
/** Home-content styling **/
section#home-content >p {
text-align: center;;
font-size: 1.0em;
line-height: 1.8em;
margin-left: 80px;
margin-right: 80px;
}
/**Headshot gallery styling **/
section#gallery > img{
display: inline-block;
margin:2px;
height: 350px;
}
/**Resume styling **/
setion#resume >h3 {
text-align: left;
margin-left: 10px;
font-size: 1.5em;
font-weight: bold;
}
section#resume >h4 {
margin: 10px;
font-size: 1.0em;
}
section#resume >ul {
margin: 10px;
font-size: 0.8em;
line-height: 1.2em;
}
section#resume >h5 {
margin: 10px;
font-size: 0.8em;
font-style: italic;
}