-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
117 lines (96 loc) · 1.88 KB
/
styles.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/** div class clear for sections with images **/
.clear {
clear: both;
}
/** div class spacer to separate sections ending in ul, ol **/
#projects .spacer {
line-height: 0.7em;
}
body {
font-family: Segoe UI, Tahoma, Verdana, sans-serif;
margin: 20px;
background-color: #F1F9FF;
}
header {
margin-bottom: 20px;
padding: 20px;
border-bottom: 2px dotted rgb(0, 174, 255)
}
header h1 {
font-size: 2em;
padding-bottom: 10px;
}
header nav ul li {
display: inline;
padding: 5px;
}
header nav ul {
margin-top: 10px;
margin-bottom: 10px;
}
footer {
margin-top: 20px;
margin-bottom: 40px;
padding: 20px;
border-top: 2px dotted rgb(0, 174, 255)
}
footer nav ul li {
display: inline;
padding: 5px;
}
footer nav ul {
margin-top: 10px;
margin-bottom: 10px;
}
/** Links **/
a {
color: rgb(255, 81, 0)
}
a:hover {
color: #00AEEF;
}
/** Makes sure all ways of doing bold, italics, underline, etc. look the same regardless of browser **/
strong, b {
font-weight: bold;
}
em, i {
font-style: italic;
}
u {
text-decoration: underline;
}
small {
font-size: 0.7em;
}
/** consistant body text formatting **/
.project {
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 2px dotted rgb(0, 174, 255);
}
.project img, #aboutme img {
width: 250px;
float: left;
margin-right: 10px;
margin-bottom: 10px;
}
.project h2, #aboutme h2 {
font-size: 1.5em;
margin-bottom: 10px;
}
.project h3, #aboutme h3 {
font-size: 1.2em;
margin-bottom: 10px;
}
#projects, #aboutme {
margin: 0 auto;
width: 90%;
max-width: 800px;
line-height: 1.5em;
}
p {
margin-bottom: 10px;
}
ul, ol {
margin-left: 25px;
}