-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathApp.scss
43 lines (37 loc) · 880 Bytes
/
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
/* ==========================================================================
PIZZA
========================================================================== */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700,900');
/* RESETS
============================================ */
html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
*, *:before, *:after {
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
body {
margin: 20px 0;
padding: 0;
line-height: 1;
font-family: 'Roboto', sans-serif;
color: #202020;
background-color: #fbfbfb;
font-smooth: always;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.card .badge {
font-size: 16px;
}
.card .text-secondary {
line-height: 25px;
}
.toast.show {
position: absolute;
left: 20px;
bottom: 20px;
z-index: 10;
}