-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcustom.scss
63 lines (59 loc) · 1.34 KB
/
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
58
59
60
61
62
63
/*-- scss:defaults --*/
$imperial-blue: #023A75;
$grape: #B38CB4;
$brick: #FC440F;
$coral: #F67E7D;
$orange: #FF8600;
$yellow: #FFE66D;
$canary: #FFFD82;
$air-blue: #6CA6C1;
$teal-blue: #437C90;
$seaweed: #177E89;
$navbar-background: $imperial-blue;
.horizontal-list {
list-style-type: none;
padding-left: 0;
display: flex;
&__item {
margin-right: 0.5rem;
font-weight: bold;
padding: 0.25rem 0.5rem;
border-radius: 0.75rem;
&--orange {
background-color: $orange;
color: white;
}
&--yellow {
background-color: $yellow;
}
&--blue {
background-color: $air-blue;
}
&--imperial-blue {
background-color: $imperial-blue;
color: white;
}
&--grape {
background-color: $grape;
}
&--coral {
background-color: $coral;
}
&--canary {
background-color: $canary;
}
&--seaweed {
background-color: $seaweed;
color: white;
}
&--teal {
background-color: $teal-blue;
color: white;
}
}
}
.wide-grid {
max-width: 1200px; /* Set a custom width, larger than default */
width: 100%;
margin: 0 auto; /* Center the grid */
}