generated from skills/github-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
172 lines (172 loc) · 4.82 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
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
171
172
/*********************************************************************
Color Scheme - Index
Grain #D7CEC7, rgb(215, 206, 199)
Blackboard #565656, rgb(86, 86, 86)
Oxblood #76323F, rgb(118, 50, 63)
Tan #C09F80, rgb(192, 159, 128)
Color Scheme - Resume
Tuft blue rgb(62, 142, 222)
UMN maroon rgb(122, 0, 25)
**********************************************************************/
/*********************************************************************
Header
**********************************************************************/
header{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
width: auto;
height: auto;
text-align: center;
background-color: rgba(215, 206, 199, 0.3);
padding-top: 2%;
padding-bottom: 2%;
}
.title{
font-size: 35pt;
font-weight: bold;
margin-bottom: 0pt;
margin-top: 2pt;
}
.title-sub1{
font-size: 14pt;
font-weight: normal;
margin-top: 3pt;
margin-bottom: 0pt;
}
.title-sub2{
font-size: 11pt;
font-weight: normal;
font-style: italic;
margin-top: 0pt;
margin-bottom: 0pt;
color: rgb(86, 86, 86);
}
.image-profile{
display: block;
overflow: hidden;
width: 120px;
height: 120px;
border: 8px solid rgba(215, 206, 199, 0.5);
margin: 0 auto;
border-radius: 50%;
}
/*********************************************************************
Navigation Bar
**********************************************************************/
.nav-bar {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgb(255,255,255);
border-top: 1.2px solid rgba(215, 206, 199, 0.5);
border-bottom: 1.2px solid rgba(215, 206, 199, 0.5);
}
.navigation {
float: right;
display: block;
color:rgb(204, 185, 175);
text-decoration: none;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: medium;
text-align: center;
padding: 14px 14px;
}
.navigation:active {
color:rgb(118, 50, 63);
}
.navigation:hover{
color:rgb(189, 167, 156);
}
/* need to check the below two lines of codes on a mobile phone*/
@media screen and (max-width: 600px) {
.nav-bar{float: none;}
.contact{max-width: 1080px;}
.contact-form{margin: 0%}
}
/*********************************************************************
Footer
**********************************************************************/
.fa {
color: rgba(86, 86, 86, 0.3);
}
footer{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
width: auto;
font-size: 10pt;
text-align: center;
background-color: rgba(215, 206, 199, 0.5);
padding-top: 20pt;
padding-bottom: 12pt;
margin-top: 2%;
}
/*********************************************************************
Main
**********************************************************************/
main{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
width: auto;
text-align: center;
/* border-bottom: 1.2px solid rgba(215, 206, 199, 0.5); */
padding-top: 2pt;
padding-bottom: 2pt;
}
img{
width: 250px;
height: 140pt;
object-fit: scale-down;
}
.learn-more {
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color: rgb(118, 50, 63);
text-align: center;
cursor: pointer;
width: 120pt;
border-radius: 18pt;
}
.learn-more:hover {
background-color: rgb(94, 30, 42);
}
/*********************************************************************
Contact Form
**********************************************************************/
.contact-form{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
display: block;
}
.contact-container{
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
display: block;
margin-left: 20%;
margin-right: 20%;
margin-bottom: 5%;
}
textarea{
resize: vertical;
}
input[type=text], select, textarea{
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
input[type=submit]{
background-color: rgb(118, 50, 63);
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover{
background-color: rgb(94, 30, 42);
}