-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathstyles.scss
95 lines (76 loc) · 1.35 KB
/
styles.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
/* You can add global styles to this file, and also import other style files */
@import "~prismjs/themes/prism-okaidia.css";
@import "~prismjs/plugins/line-numbers/prism-line-numbers.css";
* {
box-sizing: border-box;
}
*:before,
*:after {
box-sizing: border-box;
}
html,
body {
height: 100%; // 100vh;
position: relative;
margin: 0;
padding: 0;
font-family: Roboto, "Helvetica Neue", sans-serif;
font-size: 1rem;
color: #fafafa;
}
h1 {
color: #fafafa;
}
:host {
min-height: 100vh;
display: flex;
}
mat-card {
margin: 15px 0;
padding: 0;
}
.mat-drawer-container {
background: transparent;
}
.spacer {
flex: 1 1 auto;
}
.main-container {
min-height: 100vh; /* will cover the 100% of viewport */
overflow: hidden;
display: block;
position: relative;
//padding-bottom: 64px; /* height of your footer */
background: linear-gradient(150deg, #281483 15%, #8f6ed5 70%, #d782d9 94%);
}
.success-snackbar {
background: #80ff80;;
color: black;
}
info-snackbar {
background: #2196F3;
color: black;
}
.error-snackbar {
background: #F44336;
color: black;
}
.transparent {
background: transparent;
}
.isCorrect {
border-left: 10px solid #80ff80;
}
.isWrong {
border-left: 10px solid red;
}
a .active {
color: #ffd740;
}
a {
color: #fff;
}
.nav-caption {
padding-left: 0.7em;
text-transform: uppercase;
}