-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
159 lines (135 loc) · 2.91 KB
/
stylesheet.css
File metadata and controls
159 lines (135 loc) · 2.91 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*main page picture and words on that picture are styled here*/
div.intro_pic {
background-image: url('https://github.com/naugle92/naugle92.github.io/blob/master/bw_lake.jpg?raw=true');
background-size: cover;
position: static;
padding-top: 7%;
padding-bottom: 23%;
left: 0px;
top: 70px;
width: 100%;
/*background-position: absolute;*/
background-repeat: no-repeat;
text-align: center;
/*text-shadow: 1px;*/
color:black;
}
/*navigation bar on each of the pages*/
td.blackbar {
color: white;
height: 100%;
font-size: 50px;
font-family: Impact;
padding-left: 10px;
text-align: left;
}
/*navigation bar at the top of each page*/
div.blackbar {
/*position: fixed;*/
position: absolute;
left: 0;
top: 0;
height: 70px;
width: 100%;
background-color: black;
}
/*didnt really need this, but it makes sure the line near the bottom of the page before the contact info doesnt take up the whole page*/
hr.line {
width: 30%;
}
/*links dont have line underneath*/
a {
text-decoration: none;
color: white;
}
/*words on the navigation bar at the top*/
td.header{
color: white;
font-size: 20px;
font-family: Impact;
padding-left: 15px;
padding-right: 15px;
}
/*contact information at the bottom*/
td.footer{
color: white;
padding-top: 10px;
text-align: center;
font-size: 13px;
font-family: sans-serif;
padding-left: 25px;
padding-right: 25px;
}
/*contact info when the background is white. gotta make sure the words constrast*/
td.footer_white{
color: black;
font-weight: 10px;
padding-top: 5px;
padding-bottom: 20px;
text-align: center;
font-size: 13px;
font-family: sans-serif;
padding-left: 25px;
padding-right: 25px;
}
/*big ass header under the nav bar on the about.html page*/
h1.about_header {
font-size: 80px;
padding-top: 100px;
padding-bottom: 40px;
border-bottom: thin solid;
border-color: black;
margin: 0;
background-color: #E0E0E0;
text-align: center;
font-family: sans-serif;
}
h1.about_name {
color:black;
font-family: sans-serif;
padding-left: 30px;
}
/*keeps all the images except the main one, to a resonable size*/
img.resize {
width:400px;
height: auto;
}
/*this didnt work i dont think*/
ul{
padding-left: 0;
list-style-position: inside;
}
li {
padding-left: 30px;
padding-top: 5px;
}
/*used in both the about and the experience tabs, sizes and changes the font*/
div.hobby{
color:black;
font-family: sans-serif;
padding-left: 30px;
}
/*same thing as above, changes font style of the text on the about and experience pages*/
h3.about_name {
color:black;
font-family: sans-serif;
padding-left: 30px;
}
h3.about_hobby {
color:black;
font-family: sans-serif;
}
li.about_hobby {
color:black;
font-family: sans-serif;
}
/*most of the pictures, used to keep them from getting too close the edge and the text*/
td.pic {
padding: 15px;
text-align: center;
}
/*dashed line between the experiences*/
tr.experience td {
border-bottom: 1pt dashed black;
border-bottom: 80%;
}