This repository was archived by the owner on Dec 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
137 lines (115 loc) · 2.13 KB
/
Copy pathstyles.css
File metadata and controls
137 lines (115 loc) · 2.13 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
* {
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
align-items: center;
font-family: 'Roboto', sans-serif;
color: #333;
}
main {
margin: 1rem 1rem;
width: 58rem;
}
header img {
height: 90vh;
width: 100vw;
position: relative;
object-fit: cover;
}
header {
display: flex;
}
h1 {
/* Title overlay on image */
position: absolute;
align-self: center;
left: 50%;
transform: translateX(-50%);
color: #ddd;
font-size: 3rem;
text-shadow: 2px 2px 2px rgba(1, 1, 1, 0.63);
}
h1,
h2 {
font-family: 'Work Sans', sans-serif;
}
a {
text-decoration: none;
color: #174a75d2;
}
a:visited {
text-decoration: none;
color: #18446880;
}
a.button {
font-size: 1.2rem;
line-height: 1.7;
font-weight: bold;
letter-spacing: 1.5px;
text-transform: uppercase;
text-decoration: none;
color: #ddd;
padding: .5rem;
border-radius: 5px;
}
.formRow {
/* This is for each div containing a label, dropdown menu, checkbox, and label */
width: 30vw;
padding: 1rem 0;
display: flex;
justify-content: space-around;
align-items: center;
}
select {
position: absolute;
/* A hack to center the dropdown menus */
left: 50%;
transform: translateX(-50%);
}
span {
/* vertically centers the checkbox and label */
display: flex;
align-items: center;
}
span label {
padding-left: .3rem;
}
.button {
/* makes all the buttons quite stylish */
display: inline-block;
user-select: none;
width: 10rem;
height: 3rem;
margin: 40px;
padding-top: .3rem;
border-radius: 5px;
background-color: #174a75d2;
color: #eee;
font-size: 1rem;
line-height: 1.7;
font-weight: bold;
letter-spacing: 1.5px;
text-transform: uppercase;
transition: 300ms;
cursor: pointer;
text-align: center;
outline: none;
border: none;
}
.button:hover{
background-color: #18446880;
}
.button:active {
background-color: #174a75d2;
}
.button:focus {
outline: none;
}
#totGPA {
font-size: 2rem;
}
footer {
padding: 4rem 0 1rem 0;
}