-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
79 lines (67 loc) · 1.42 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
h1 {
text-align: center;
}
p {
font-size: 1.1em;
}
h5 {
font-weight:normal;
}
.links {
color: #006699;
font-size: 22px;
}
.btn-outline-primary {
border-color: black;
color: black;
background-color: white;
}
.btn-outline-primary:hover {
border-color: grey;
background-color: whitesmoke;
color: black;
}
/* -----------HERO IMAGE AT TOP OF PAGE -----------*/
/* LARGE HERO IMAGE AT TOP OF PAGE*/
.hero-image {
position: relative;
margin-bottom: 2em;
/* liner gradient tints the image darker for readability*/
background-image: linear-gradient( rgba(0,0,0,.2), rgba(0,0,0,.2) ), url(images/vortex.gif);
height: 350px;
background-size: cover;
background-color: #141c25f2;
background-position: center center;
display: flex; /* Change to `display: none` for no hero image */
justify-content: center;
align-items: center;
}
.top-text {
position: relative;
letter-spacing: 0.065em;
line-height: 1em;
font-size: 25px;
text-transform: uppercase;
text-align: center;
display: block;
color: #ffffff;
margin-bottom: 1.5rem;
font-weight: bold;
}
.mid-text {
position: relative;
font-size: 20px;
padding-bottom: 0.5em;
text-align: center;
display: block;
color: #ffffff;
margin-bottom: 0.5rem;
}
.button-text {
position: relative;
font-size: 15px;
padding-bottom: 0.5em;
text-transform: uppercase;
text-align: center;
display: block;
}