-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathapplication.scss
More file actions
196 lines (166 loc) · 3.58 KB
/
Copy pathapplication.scss
File metadata and controls
196 lines (166 loc) · 3.58 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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any styles
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
* file per style scope.
*
*= require selectize
*= require selectize.default
*/
@import 'bootstrap';
// $fa-font-path: '/packs/media/webfonts';
$fa-font-path: '~@fortawesome/fontawesome-free/webfonts';
@import '~@fortawesome/fontawesome-free/scss/fontawesome';
@import '~@fortawesome/fontawesome-free/scss/solid';
@import '~@fortawesome/fontawesome-free/scss/regular';
@import 'layout';
@import 'forms';
@import 'edit_teachers';
@import 'merge_modal';
@import './sidebar.scss';
@import "./selectize.scss";
html {
min-height: 100%;
position: relative;
--berkeley-blue: #003262;
}
body {
margin: 70px 0 255px;
/* bottom = footer height */
}
.btn-xs {
padding: 0 0.5rem;
font-size: 0.6rem;
line-height: 1.5;
border-radius: 100%;
}
.btn-primary {
background-color: var(--berkeley-blue);
border-color: var(--berkeley-blue);
color: white;
&:visited {
color: white;
}
}
.btn-purple {
background-color: #8A2BE2; /* Light purple */
}
/* Style for the box around the file upload link */
.box-link {
display: inline-block;
padding: 5px 10px;
height: 40px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f9f9f9;
}
.btn-blue {
background-color: #9dc0ee;
}
footer {
position: absolute;
margin: 0;
background-color: #18568C;
color: #FFF;
padding-top: 25px;
left: 0;
bottom: 0;
width: 100%;
overflow: hidden;
}
footer .container .social-icons {
text-align: center;
margin-bottom: 10px;
}
footer .container .social-icons a {
margin-right: 10px;
}
.fa-2x {
font-size: 2em;
}
footer .footer-links {
max-width: 80em;
margin: 0.2em auto;
padding: 1em;
text-align: center;
font-size: 12px;
}
.social-icons > a {
color: #fff;
}
#sign-up-form-container {
margin-bottom: 80px;
}
.google-signin {
background-color: white;
}
.hero-btn {
box-shadow: 0 2px 4px 0 rgba(0,0,0,.25);
width: 160px;
margin-right: 15px;
}
.admin-jumbotron {
margin-top: 55px;
}
#map {
height: 500px;
margin-bottom: 55px;
}
a {
color: var(--indigo);
}
footer a {
color: #B3EFFF;
}
footer a:hover,
footer a:active {
/* As similar lines below, each line has been considered.
Links' colors are placed at the end so that they have the
highest specificity. */
color: #F2E205;
}
.pages-sidebar {
border-right: 1px solid var(--berkeley-blue);
padding: 1em 0;
}
.requests-dashboard {
th[data-col="status"],
td[data-col="status"] {
display: none;
}
}
.primary-email-dot,
.bounced-email-dot {
display: inline-block;
width: 12px;
height: 12px;
border-radius: 50%;
vertical-align: middle;
margin-right: 4px;
cursor: default;
}
.primary-email-dot {
background-color: #007bff;
}
.bounced-email-dot {
background-color: #dc3545;
}
.trapezoid {
position: absolute;
bottom: -11px;
left: 36px;
border-top-style: solid;
border-top-width: 12px;
border-top-color: #0C3559;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
height: 0;
width: 60px;
z-index: 100;
}