-
Notifications
You must be signed in to change notification settings - Fork 2
/
tosync.scss
119 lines (97 loc) · 2.03 KB
/
tosync.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
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
@import "sass/_variables";
@import "node_modules/bootstrap/scss/bootstrap.scss";
@import "node_modules/ladda/css/ladda.scss";
@import "sass/_calendar";
@import "sass/_changes";
@import "sass/_colors";
@import "sass/_divider";
@import "sass/_loginPage";
@import "sass/_google";
@import "sass/_layout";
@import "sass/_modal";
@import "sass/_navbar";
@import "sass/_remu";
@import "sass/_loading";
@import "sass/_color-select";
@import "sass/_notifications";
@import "sass/_toolbar";
@import "sass/_skeleton";
@import "sass/_print";
html, body {
font-size: 14px;
font-family: 'Lato', sans-serif;
-webkit-touch-callout: none;
-webkit-tap-highlight-color: transparent;
-webkit-user-select: none;
user-select: none;
background-color: $success;
}
.tosync .modal-dialog {
margin-top: calc(env(safe-area-inset-top) + 0.5rem);
margin-bottom: calc(env(safe-area-inset-bottom) + 0.5rem);
}
#noty_layout__top {
padding-top: calc(env(safe-area-inset-top) + 2px) !important;
}
.table-row {
display: table-row;
}
.table-cell {
display: table-cell;
}
.ellipsis {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.text-capitalize {
text-transform: capitalize;
}
.text-uppercase {
text-transform: uppercase;
}
button, a, button:focus, a:focus {
outline: none !important;
color: $gray-600;
}
.remove-button {
padding: 0px 2px;
&.btn-link {
color: $danger;
&:hover {
color: darken($danger, 30%);
}
}
&.active {
border-radius: 2px;
}
}
select {
-webkit-appearance: none;
}
#content {
background-color: #ffffff;
padding-bottom: 1rem;
}
footer {
display: block;
background-color: $success;
padding-top: 1rem;
padding-bottom: env(safe-area-inset-bottom);
.container-xl {
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
}
p, a {
color: #fff;
&.copyright {
opacity: 0.7;
}
}
.navbar {
border-radius: 0;
border-right: none;
border-left: none;
margin-bottom: 0;
}
}