-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainpage.css
More file actions
170 lines (144 loc) · 2.96 KB
/
mainpage.css
File metadata and controls
170 lines (144 loc) · 2.96 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
160
161
162
163
164
165
166
167
168
169
170
/* Why must I resort to this awful solution */
* {
margin: 0px;
padding: 0px;
}
body {
background-color: #f4dfc8;
font-family: 'Raleway', sans-serif;
}
/*******************************************************************************************************/
/******************************************* Header styling ********************************************/
/*******************************************************************************************************/
.header {
background-color: #758173;
position: absoloute;
display: inline-block;
width: 100%;
box-shadow: 0px 5px 5px 0px grey;
}
.header > .title {
margin-top: 25px;
margin-bottom: 25px;
margin-left: 100px;
width: 100px;
float: left;
text-align: right;
}
.header > .title h1 {
font-family: 'Raleway', sans-serif;
font-weight: 800;
font-size: 50px;
color: #C5EFCB;
}
.header > .navigation {
text-align: right;
float: right;
margin-top: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
.header > .navigation ul {
text-align: right;
font-family: 'Raleway', sans-serif;
font-weight: 300;
font-size: 40px;
color: #C5EFCB;
list-style-type: none;
}
.header > .navigation li {
display: inline;
margin-left: 20px;
margin-right: 20px;
}
/*******************************************************************************************************/
/********************************************* Bio styling *********************************************/
/*******************************************************************************************************/
.container {
width: 100%;
height: auto;
padding-bottom: 15px;
padding-top: 15px;
}
/*
#bio-section {
background-color: lightblue;
}
#project-section {
background-color: #FFF4E9;
height: auto;
}
*/
/* these specific id tags will over-write the default styling on image and text in an entry for bio only */
#bio-image {
float: right;
}
#bio-text {
float: left;
}
.entry {
position: relative;
left: 50%;
transform: translateX(-50%);
width: 835px;
height: 325px;
}
.image {
width: 325px;
height: 325px;
background-color: #758173;
border-radius: 50%;
float: left;
box-shadow: 5px 5px 5px 0px grey;
}
.image img {
border-radius: 50%;
position: relative;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.text {
font-family: 'Raleway', sans-serif;
float: right;
width: 450px;
height: 300px;
padding-left: 10px;
}
.text h1 {
font-weight: 800;
}
.text p {
margin-top: 20px;
font-weight: 300;
font-size: 20px;
}
/* spacer tag styling */
.section-spacer {
font-family: 'Raleway', sans-serif;
text-align: center;
margin-top: 100px;
padding-top: 20px;
padding-bottom: 20px;
background-color: #FFF4E9;
color: #758173;
height: auto;
box-shadow: 0px 5px 5px 0px grey;
}
.content {
display: none;
height: auto;
}
.project-list {
margin: 0 auto;
width: auto;
height: auto;
margin-top: 25px;
text-align: center;
}
.project-selection {
list-style-type: none;
display: inline;
margin-left: 20px;
margin-right: 20px;
}