-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.scss
57 lines (48 loc) · 886 Bytes
/
custom.scss
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
/*-- scss:defaults --*/
// Colors
$ turqoise-blue: #008cba;
$ light-blue: #add7ff;
$ gray: #c8c8c8;
.custom-subtitle {
font-size: 16px;
margin-bottom: 0.15em;
}
.custom-subtitle2 {
font-size: 14px;
font-style: italic;
}
.custom-text-block {
.font-size: 12px;
.font-style: italic;
}
/*-- scss:rules --*/
/* CLASS SELECTORS (self-defined) */
.topbr {
display: block;
margin-top: 1em;
}
.button-styling {
background: $turqoise-blue;
border-color: $gray;
color: $gray;
border-radius: 0.6rem;
border-width: thin;
font-size: 18px;
letter-spacing: 3px;
padding-top: 2px;
padding-bottom: 2px;
padding-right: 6px;
padding-left: 6px;
transition-duration: 0.4s;
}
.collapsible {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}