-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
128 lines (101 loc) · 2.39 KB
/
custom.css
File metadata and controls
128 lines (101 loc) · 2.39 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
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;400;500;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css");
body {
font-family: 'Source Sans Pro', sans-serif;
color: #00185e;
min-height: 100vh;
}
/* ==================================================== GLOBAL LAYOUT */
.font-bold {
font-weight: 700;
}
/* ==================================================== LEFT MENU LAYOUT */
.list-group-item.active {
color: #00185e;
background-color: #f5feff;
border-bottom-color: #85d9fd;
border-top: none;
}
.list-group-item:hover {
color: #00185e;
background-color: #f5feff;
border-bottom-color: #85d9fd;
border-top: none;
}
/* ==================================================== CARDS LAYOUT */
.card-ovh:hover {
background-color: #f5feff;
}
.card-description {
color: #4d5592;
}
.card-link {
display: inline-block;
position: relative;
color: #0050d7;
text-decoration: none;
}
.card-link:after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
background-color: #0050d7;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
}
.card-link:hover:after {
transform: scaleX(1);
transform-origin: bottom left;
}
/* ==================================================== GREYED OUT CARDS LAYOUT */
.greyed-out {
background-color: #ddd;
opacity: .6;
}
.greyed-out:hover {
background-color: #ddd;
}
/* ==================================================== OFFCANVAS */
.avail-True {
color: #3c9119;
background: #dbf2bb;
border-radius: 0.5em;
padding-left: 0.5em;
padding-right: 0.5em;
}
.avail-False {
color: #c11b1b;
background: #ffd2dd;
border-radius: 0.5em;
padding-left: 0.5em;
padding-right: 0.5em;
}
/* ==================================================== DATATABLES */
.text-small {
font-size: 12px;
}
td.bg-green {
background-color: #bff5bc;
}
td.bg-red {
background-color: #f5bcc4;
}
/* ==================================================== COLORS */
.border-ovh {
border-color: #85d9fd;
border-width: 2px;
}
.border-greyed-out {
border-color: #bbb;
border-width: 2px;
}
.bg-ovh {
background-color: #000e9c;
}
.title-ovh {
color: #dfff81;
}