-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
178 lines (155 loc) · 3.26 KB
/
styles.css
File metadata and controls
178 lines (155 loc) · 3.26 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
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
173
174
175
176
177
178
@import url('https://fonts.googleapis.com/css?family=Noto+Sans&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300&display=swap');
/* removing focus border from buttons */
button:focus {
outline: none;
}
/*specified styling for paragraphs*/
p {
font-family: 'Noto Sans', sans-serif;
font-size: 14pt;
}
/*specified styling for headers*/
h1 {
font-family: 'Source Sans Pro', sans-serif;
font-size: 30pt;
}
h2 {
font-family: 'Source Sans Pro', sans-serif;
font-size: 30pt;
}
/*specified styling for sub headers*/
h4 {
font-family: 'Source Sans Pro', sans-serif;
font-size: 25pt
}
/* .header-text {
font-family: "Source Sans Variable", "Source Sans Pro", sans-serif;
font-size: 30pt;
font-weight: 400;
text-transform: uppercase;
}
.sub-header-text {
font-family: "Source Sans Variable", "Source Sans Pro", sans-serif;
font-size: 25pt;
font-weight: 200;
} */
.body-text {
font-family: "Noto Sans script=all rev=2";
font-size: 14pt;
font-weight: 400;
color: #50bbe6;
}
.footer {
font-family: 'Source Sans Pro', sans-serif;
}
.nav-link {
float: right;
margin-left: 10px;
}
/*sets hover color of nav bar buttons*/
.navbar-light .navbar-nav .nav-link:focus {
color: black;
}
.navbar-dark .navbar-nav .nav-link:focus {
color: #ffffff;
}
.navbar-light .navbar-nav .nav-link:hover {
color: #50bbe6;
}
.navbar-dark .navbar-nav .nav-link:hover {
color: #50bbe6;
}
.nav-link:focus {
color: black;
}
.nav-link:hover {
color: #50bbe6;
}
/* SWITCHES BETWEEN LOGOS */
.navbar-dark img[class*=light] {
display: none;
}
.navbar-light img[class*=light] {
display: default;
}
.navbar-light img[class*=dark] {
display: none;
}
.navbar-dark img[class*=dark] {
display: default;
}
/* PICTURE TEXT DECORATIONS IN MISSION SECTION: */
.img-effect-border:after {
border: 2px solid #50bbe6;
}
.img-effect-border:before {
background-color: #50bbe6;
}
.img-effect-solid:before {
background-color: #50bbe6;
}
/* BUTTON STYLING: */
.btn-outline-primary {
border-color: #50bbe6;
color: white;
}
.btn[class*=outline]:hover{
background-color: #50bbe6;
}
.btn-outline-primary:hover {
border-color: #50bbe6;
background-color: #50bbe6;
}
.btn-outline-primary:active {
border-color: #50bbe6;
color: #50bbe6;
}
.navbar-brand img {
height: 35px;
}
#brands {
margin-top: 100px;
margin-bottom: 100px;
color: #50bbe6;
}
/*sets button text color:*/
.btn[class*=outline][class*=primary]:active, .btn[class*=outline][class*=primary]:focus {
color: #23366a;
border-color: #50bbe6;
}
.btn[class*=outline][class*=primary]:active:focus {
background-color: #50bbe6;
color: white;
}
.btn[class*=outline][class*=primary]:hover {
color: white;
}
/*change background color of buttons with text-white class*/
.btn[class*=text-white]:hover {
background-color: #50bbe6
}
/* HIGHLIGHTED TEXT COLOR: */
::selection {
color: white;
background: #23366a;
}
/*form inputs when clicked on*/
.form-control:focus{
border-color: #50bbe6;
}
/* changes the color of icons */
i {
color: #50bbe6
}
.card-body{
padding: 2.5rem 1.8rem;
}
/* Thank You Page */
.center-card {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}