-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathcommon.scss
74 lines (63 loc) · 1.02 KB
/
common.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
$background: #282a36;
$background2: #44475a;
$background3: #21222c;
$lightbg: #7e83a6;
$grey: #f8f8f2;
$blue: #6272a4;
$cyan: #8be9fd;
$green: #50fa7b;
$orange: #ffb86c;
$pink: #ff79c6;
$purple: #bd93f9;
$red: #ff5555;
$yellow: #f1fa8c;
$white: #fafafa;
$black: #202020;
$very-short-duration: 0.1s;
$short-duration: 0.3s;
$medium-duration: 0.5s;
$long-duration: 1s;
$mid_screen: 800px;
$small_screen: 600px;
@mixin roundCorners {
border-radius: 0.25em;
}
@mixin circle {
border-radius: 9999px;
overflow: hidden;
}
@mixin transition {
transition: 0.25s;
}
@mixin center {
align-items: center;
justify-content: center;
}
@mixin ellipsis {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
@mixin shadow {
box-shadow: 0 0 38px rgba(0, 0, 0, 0.3), 0 0 12px rgba(0, 0, 0, 0.22);
}
.nuclear {
font-family: "Lato", sans-serif;
color: $white;
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fade-out {
from {
opacity: 1;
}
to {
opacity: 0;
}
}