forked from tuub/platzbuchung
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.scss
79 lines (64 loc) · 1.22 KB
/
app.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
@import './variables.scss';
@import '~bootstrap';
@import '~bootstrap-vue';
@import 'alert';
* {
outline: 0px #336699 solid;
}
.navbar {
padding: 0 !important;
}
.navbar-brand {
padding-top: 0 !important;
//padding-bottom: 0 !important;
}
.nav-link {
padding-top: 1rem;
padding-bottom: 1rem;
}
.navbar-text {
//margin-top: 0.4rem;
//margin-bottom: 0.4rem;
padding-top: 0.85rem;
}
.nav-link:hover {
background-color: #c40d1e;
color: #fff !important;
}
.page-enter-active, .page-leave-active {
transition: opacity 0.2s, transform 0.2s;
}
.page-enter, .page-leave-to {
opacity: 0;
transform: translateX(-30%);
}
button.time-slot {
border: 0;
font-size: 0.8rem;
padding: 0.5rem;
width: 5rem;
}
.time-slot-status-available {
background-color: lightgreen;
color: #000;
}
.time-slot-status-available:hover {
background-color: darkgreen;
color: #fff;
}
.time-slot-status-unavailable {
background-color: lightgrey;
color: #000;
}
.time-slot-status-full {
background-color: red;
color: #fff;
}
.time-slot-status-user-booked {
background-color: dodgerblue;
color: #fff;
}
.time-slot-count {
font-size: 1.5rem;
font-weight:bold;
}