-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
166 lines (139 loc) · 2.7 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
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
160
161
162
163
164
165
166
/*Add padding and margin to space out the page.
Make the font larger too.*/
body{
margin:1%;
padding:1%;
font-size:150%;
background-color: aliceblue;
}
/*Make the h1 heading bigger with a bold font*/
h1{
font-size: 2em;
font-weight: bold;
text-align: center;
}
.active{
background: rgb(238, 143, 143);
text-transform: uppercase;
text-align: center;
}
a:link { text-decoration: none; }
.active a{
text-decoration: none;;
}
.bio_para{
line-height: 1.5;
padding: 75px;
text-align: justify;
}
/*Style the images*/
.project_image {
/* display: inline-block; */
text-align: center;
/* border: 1px dotted gray; */
margin: auto;
justify-content: center;
}
.project_image img{
margin-top: 10px;
}
.project_image figcaption {
padding: 0;
position: relative;
/* margin-top: -20px; */
}
a{
color: whitesmoke;
}
#footer {
position: relative;
margin-top: 400px;
/* negative value of footer height */
height: 20px;
clear: both;
background-color: black;
color: white;
}
/*Make the h2 heading match h1*/
h2{
font-size: 2em;
font-weight: bold;
}
/*Improve the spacing for paragraphs AND headings*/
p, h1, h2 {
padding: 10px;
}
/*Add borders around the main components and some
space too*/
.profile_img{
height: 300px;
width:auto;
padding: 75px;
}
/*Change the styling for all of the list
items in the nav section*/
nav li{
background-color: #8c3434;
padding:10px;
width:25%;
border:1px solid black;
display: inline-block;
width: 23.16%;
}
/*Added this so the links stay the same color*/
a:visited{color:#f2f2f7}
.project_heading{
font-family: Georgia, 'Times New Roman', Times, serif;
background-color: #8c3434;
color: white;
font-size: 20pt;
margin-top: 25px;
}
.project_desc{
font-family: Arial, Helvetica, sans-serif;
font-size: 16pt;
text-align: justify;
padding-bottom: 50px;
line-height: 1.2;
}
.bolded { font-weight: bold; }
.italics{font-style: italic;
font-size: 14pt;}
.blog_head{
background-image: url("../images/books_bg.jpg");
margin-top: 10px;
background-size: cover;
background-position: center;
height: 200px;
/* width: 87.5%; */
}
.caption {
display: block;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 24px;
line-height: 1.5;
padding-top: 120px;
position: relative;
color: white;
background-color: rgba(0, 0, 0, 0.5);
}
.publication_list{
/* make bullet points red squares */
list-style:square ;
margin-left: 50px;
}
.blog_body{
background-size: cover;
background-position: center;
height: 120px;
margin-top: 30px;
padding-top: 30px;
border-color: grey;
border-width: 1px;
border-style:solid;
}
.blog_body:hover {
display: block;
background-image: url("../images/polka_dots_bg.png");
color: whitesmoke
}