-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
83 lines (65 loc) · 1.43 KB
/
style.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
@import "bootstrap/scss/bootstrap";
$fa-font-path: "@fortawesome/fontawesome-free/webfonts";
@import "@fortawesome/fontawesome-free/scss/fontawesome";
@import "@fortawesome/fontawesome-free/scss/solid";
@import "@fortawesome/fontawesome-free/scss/brands";
@import "@fortawesome/fontawesome-free/scss/regular";
body {
height: 100vh;
background: linear-gradient(-45deg, #d5a223, #99d523, #23A6D5, #23D5AB);
background-size: 400% 400%;
-webkit-animation: Gradient 45s ease infinite;
-moz-animation: Gradient 45s ease infinite;
animation: Gradient 45s ease infinite;
main.container {
div.blurred-box {
min-width: 70%;
background: rgba(0,0,0,0.25);
&:after {
content: '';
box-shadow: inset 0 0 0 200px rgba(255,255,255,0.05);
filter: blur(10px);
}
.social-icon {
margin-left: 1rem;
margin-right: 1rem;
&:hover {
text-decoration: none;
}
}
}
}
}
@-webkit-keyframes Gradient {
0% {
background-position: 0 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0 50%
}
}
@-moz-keyframes Gradient {
0% {
background-position: 0 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0 50%
}
}
@keyframes Gradient {
0% {
background-position: 0 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0 50%
}
}