-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
78 lines (66 loc) · 1.16 KB
/
style.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
:root {
--primary-color: #05386b;
--green: #00d1b3;
}
.is-primary {
background-color: var(--primary-color) !important;
}
.button.is-outlined {
background-color: transparent !important;
border-color: var(--primary-color) !important;
color: var(--primary-color) !important;
}
.button.is-outlined:hover {
background-color: #dbdbdb !important;
border-color: var(--primary-color) !important;
color: var(--primary-color) !important;
}
header {
min-height: 300px;
}
.input,
.control > .button {
border-color: var(--green) !important ;
}
hr {
background-color: var(--green) !important;
}
.card {
margin: 15px 15px;
}
.contentCard,
.subtitle,
.navbar-item {
color: #05386b !important;
}
.active {
background-color: #f5f5f5;
}
.hero-body {
padding-bottom: 1rem;
padding-top: 1rem;
}
nav {
border-bottom: 1px ridge;
}
.column.is-3.is-offset-2 {
margin-top: 10px;
margin-bottom: 20px;
}
.main {
position: fixed;
left: 0px;
bottom: 0px;
height: fit-content;
padding-top: 10px;
width: 100%;
background: #f5f5f5;
}
footer {
height: fit-content;
padding-top: 10px;
background: #f5f5f5;
}
.fa-2x {
color: #05386b !important;
}