-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofile.css
137 lines (111 loc) · 2.02 KB
/
profile.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
/*
####################################################################
## THE FOLLOWING IS FOR DEMONSTRATION AND REFERENCE PURPOSES ONLY ##
## DO NOT COPY ##
## DO NOT REMOVE ##
####################################################################
*/
body {
margin: 0 5% 0 5%;
font-family: 'Lato', Geneva, Helvetica, sans-serif;
font-size: 1em;
background-color: whitesmoke;
color: #2F4F4F;
}
h1, h2, h3, h4, h5 {
font-family: 'Oswald', 'Roboto', 'Open Sans', Tahoma, Geneva, sans-serif
}
h1 {
font-size: 3em;
}
h2 {
font-size: 1.5em;
}
a:link {
color: #4F4F2F;
}
a:active {
font-weight: bold;
}
a:visited, a:hover {
color: #4F2F4F;
}
hr {
background-color: #2F4F4F;
width: 80%;
height: 2px;
clear: both;
}
.fas, .fab {
font-size: 3em;
}
/* The below style is standard W3C for clearfix (may or may not be necessary). */
.clearfix::after {
content: "";
clear: both;
display: table;
}
#course-title {
background-color: #D3E5E5;
color: #4F2F2F;
font-weight: bold;
}
div.leftcol {
float: left;
clear: both;
width: 50%;
}
div.rightcol {
float: right;
clear: right;
width: 50%;
}
img#headshot {
max-width: 30%;
max-height: 275px;
margin: 20px;
float: right;
border-radius: 25px;
background-color: inherit;
}
ul#contact-info {
width: 100%;
list-style: none;
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
}
@media screen and (max-width: 800px) {
div.leftcol, div.rightcol {
float: none;
width: 100%;
}
}
@media screen and (max-width: 600px) {
h1, h2, h3, h4, h5 {
text-align: center;
}
.fas, .fab {
font-size: 2em;
}
img#headshot {
float: none;
display: block;
min-width: 150px;
margin-right: auto;
margin-left: auto;
}
ul#contact-info {
flex-direction: column;
}
}
#contact-info li {
width: 20%;
margin: 2.5%;
}
/*
########################################
## 364a4ff04a0e713b57099bfc25aa6206 ##
########################################
*/