-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrontPageStyles.css
More file actions
102 lines (81 loc) · 1.44 KB
/
frontPageStyles.css
File metadata and controls
102 lines (81 loc) · 1.44 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
/* font-family: 'Mr Dafoe', cursive;
font-family: 'Roboto Mono', monospace;
font-family: 'Merriweather', serif; */
:root {
--black-txt-color: #000;
--light-grey-color: #d3d3d3;
--yellow-color: #d8aa20;
--slogan-font-family: 'Mr Dafoe';
--menu-font: 'Roboto Mono';
}
.darken {
background-color: rgba(229, 229, 229, 0.8);
transition: 1s ease 0s;
}
.smallCaps {
font-family: var(--menu-font);
font-variant: small-caps;
font-size: 2.2em;
}
.subMenuTitle {
font-size: 0.8em;
font-style: italic;
padding: 0 5px;
}
.pillButton {
border-radius: 25px;
padding: 3px 30px 5px 30px;
font-size: 0.8em;
font-variant: small-caps;
}
#slogan {
text-align: center;
padding-top: 2%;
}
#slogan h2 {
font-size: 1.7em;
font-family: var(--slogan-font-family);
}
#slogan h4 {
font-family: 'Merriweather';
font-size: 0.8em;
color: var(--yellow-color);
}
.img-fluid {
width: 100%;
height: 100%;
display: block;
}
.caroHolder {
width: 100%;
height: 100%;
margin: 0 auto;
margin-top: 25%;
}
.horizonPhoto {
max-width: 100vw;
margin-top: 85px;
padding-bottom: 20px;
}
.meetCoders {
text-align: center;
/* margin-top: 0px; */
}
.meetCoders h2 {
font-size: 2em;
font-family: var(--menu-font);
}
/* -- Media Queries -- */
@media (min-width: 768px) {
.caroHolder {
width: 80%;
height: 80%;
margin-top: 12%;
}
#slogan h2 {
font-size: 2.2em;
}
#slogan h4 {
font-size: 1em;
}
}