-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
92 lines (73 loc) · 1.22 KB
/
main.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
80
81
82
83
84
85
86
87
88
89
90
91
92
/* PRIMARY : #f17841 */
/* MIDNIGHT : #1a1e29 */
/* DARK : #2a313b */
/* LIGHT : #b2b2b2 */
.primary {
background-color: #f17841;
}
.midnight {
background-color: #1a1e29;
}
.dark {
background-color: #2a313b;
}
.light {
background-color: #b2b2b2;
}
.nospace {
margin: 0;
padding: 0;
}
.primary-outlined {
background: transparent;
border: 1px solid #f17841; color: #f17841 !important;
}
.primary-outlined:hover {
color: white !important;
background-color: #f17841 !important;
}
.primary-active {
color: white;
background-color: #f17841;
}
/* NAV BAR */
.navbar-item {
color: white;
}
.navbar-start .navbar-item {
background-color: #1a1e29;
color: white;
}
.navbar-start .navbar-item:hover {
background: #2a313b;
color: white;
}
#nav-active {
background-color: #f17841 !important;
}
/* Flickity */
.main-carousel {
width: 100%;
background-color: #2a313b;
margin-bottom: 40px;
height: 100%;
}
.carousel-cell {
width: 100%;
}
.carousel-cell img {
display: block;
margin: auto;
max-width: 100%;
height: 100%;
}
/* MENU */
.menu * {
color: white !important;
}
.menu a:hover {
background-color: #2a313b;
}
.menu .primary-active:hover {
background-color: inherit;
}