-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.css
135 lines (119 loc) · 2.54 KB
/
main.css
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
html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
background-image: linear-gradient(
90deg,
rgba(51, 51, 51, 1) 0%,
rgba(38, 38, 38, 1) 44%,
rgba(0, 0, 0, 1) 100%
);
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
@font-face {
font-family: 'Monda';
src: url('./resources/fonts/Monda/Monda-Regular.ttf');
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'MondaBold';
src: url('./resources/fonts/Monda/Monda-Regular.ttf');
font-style: bold;
font-display: swap;
}
@font-face {
font-family: 'Monoton';
src: url('./resources/fonts/Monoton-Regular.ttf');
font-style: normal;
font-display: swap;
}
.menu-main {
animation: deploy 4s infinite linear;
}
@keyframe deploy {
0% {
opacity: 0;
transform: translate(0px, 0px);
}
100% {
opacity: 1;
transform: translate(100px, 100px);
}
}
.white-grad {
color: #313149;
padding: 20px;
display: inline-block;
margin: 0;
position: relative;
z-index: 0;
width: 60vw;
height: 60vw;
min-width: 380px;
min-height: 380px;
max-height: 600px;
max-width: 600px;
background-color: linear-gradient(
90deg,
rgba(46, 167, 227, 1) 0%,
rgba(46, 167, 227, 1) 10%,
rgba(250, 4, 254, 1) 90%
);
border-radius: 50%;
}
.white-grad:before {
content: '';
position: absolute;
z-index: -1;
inset: 0;
padding: 7px;
border-radius: 50%;
background: linear-gradient(
to right,
rgba(46, 167, 227, 1),
rgba(250, 4, 254, 1)
);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
}
.white-grad-select {
background-image: radial-gradient(
circle,
rgba(79, 143, 106, 1) 0%,
rgba(55, 135, 127, 1) 26%,
rgba(30, 127, 147, 1) 100%
);
}
.white-grad-select:before {
background: linear-gradient(
to right,
rgba(121, 245, 173, 1),
rgba(11, 205, 247, 1)
);
}
.lines {
stroke-dasharray: 450;
stroke-dashoffset: 450;
animation: draw 5s linear forwards;
}
.lines-mobile {
stroke-dasharray: 2000;
stroke-dashoffset: 2000;
animation: draw 5s linear forwards;
}
@keyframes draw {
to {
stroke-dashoffset: 0;
}
}