-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyles.scss
221 lines (200 loc) · 5.19 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
// Custom Theming for Angular Material
// For more information: https://material.angular.io/guide/theming
@use '~@angular/material' as mat;
// Plus imports for other components in your app.
// Include the common styles for Angular Material. We include this here so that you only
// have to load a single css file for Angular Material in your app.
// Be sure that you only ever include this mixin once!
@include mat.core();
$indigo-pink-theme: mat.define-light-theme(
(
color: (
primary: mat.define-palette(mat.$indigo-palette),
accent: mat.define-palette(mat.$pink-palette, A200, A100, A400),
warn: mat.define-palette(mat.$red-palette),
),
)
);
// Include theme styles for core and each component used in your app.
// Alternatively, you can import and @include the theme mixins for each component
// that you are using.
@include mat.all-component-themes($indigo-pink-theme);
.deeppurple-amber-theme {
$deeppurple-amber-theme: mat.define-light-theme(
(
color: (
primary: mat.define-palette(mat.$deep-purple-palette),
accent: mat.define-palette(mat.$amber-palette, A200, A100, A400),
),
)
);
@include mat.all-component-colors($deeppurple-amber-theme);
}
.pink-bluegrey-theme {
$pink-bluegrey-theme: mat.define-dark-theme(
(
color: (
primary: mat.define-palette(mat.$pink-palette, 700, 500, 900),
accent: mat.define-palette(mat.$blue-grey-palette, A200, A100, A400),
),
)
);
@include mat.all-component-colors($pink-bluegrey-theme);
}
.purple-green-theme {
$purple-green-theme: mat.define-dark-theme(
(
color: (
primary: mat.define-palette(mat.$purple-palette, 700, 500, 800),
accent: mat.define-palette(mat.$green-palette, A200, A100, A400),
),
)
);
@include mat.all-component-colors($purple-green-theme);
}
/* You can add global styles to this file, and also import other style files */
html,
body {
height: 100%;
}
body {
margin: 0;
font-family: Roboto;
height: 100%;
}
.background {
background-image: url(./assets/img/scrabble.jpg);
background-size: cover;
min-width: 100%;
min-height: 100%;
position: relative;
}
.mainPageContainer {
text-align: center;
width: 50%;
position: absolute;
top: 30%;
left: 25%;
}
.mat-dialog-container {
background: rgba(0, 0, 0, 0.75);
min-width: 400px;
max-width: 900px;
justify-content: center;
align-items: center;
}
.errorMessage {
font-size: 1.5em;
color: white;
}
mat-dialog-container {
padding: 0px 0px 0px 0px !important;
justify-content: center;
align-items: center;
}
h1.title-page {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
color: #fff;
display: block;
font-size: 750%;
-webkit-text-stroke: 1px black;
text-shadow: 0 4px 30px #000;
padding: 0 0 40px 50px;
text-align: center;
}
h2.subtitle-page {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
color: #000;
display: block;
font-size: 400%;
-webkit-text-stroke: 0.1px #fff;
text-shadow: 0 4px 50px #000;
padding-bottom: 50px;
text-align: center;
}
.vp-wrapper {
font-size: 18px;
}
.vp-name {
text-transform: uppercase;
font-weight: bold;
color: rgba(255, 255, 255, 0.2);
background: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRDxmQ4MsClS3YNOmm2TDg01nG79HG-l9lMpzhE4WsD7NBSwlg3MEyQL9Eb0KnjdOi-VbI&usqp=CAU);
background-clip: text;
background-size: contain;
animation: fire 15s linear infinite; // https://www.youtube.com/watch?v=A264rF0cpyM&ab_channel=Onlinewebustaad
}
@keyframes fire {
0% {
background-position: left 0 top 25px;
}
50% {
background-position: left 130px top -35px;
}
100% {
background-position: left 250px top -35px;
}
}
.waiting-info {
flex-basis: 50%;
font-size: 20px;
display: flex;
flex-direction: row;
justify-content: center;
margin-bottom: 2%;
}
/**
* ==============================================
* Dot Flashing https://codepen.io/nzbin/pen/GGrXbp
* ==============================================
*/
.dot-flashing {
position: relative;
width: 10px;
height: 10px;
border-radius: 5px;
background-color: #000;
color: #000;
animation: dotFlashing 1s infinite linear alternate;
animation-delay: 0.5s;
}
.dot-flashing::before,
.dot-flashing::after {
content: '';
display: inline-block;
position: absolute;
top: 0;
}
.dot-flashing::before {
left: -15px;
width: 10px;
height: 10px;
border-radius: 5px;
background-color: #000;
color: #000;
animation: dotFlashing 1s infinite alternate;
animation-delay: 0s;
}
.dot-flashing::after {
left: 15px;
width: 10px;
height: 10px;
border-radius: 5px;
background-color: #000;
color: #000;
animation: dotFlashing 1s infinite alternate;
animation-delay: 1s;
}
@keyframes dotFlashing {
0% {
background-color: #000;
}
50%,
100% {
background-color: #ebe6ff;
}
}