-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
128 lines (115 loc) · 2.9 KB
/
Copy pathstyles.css
File metadata and controls
128 lines (115 loc) · 2.9 KB
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
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
*, body, html, :root{
padding: 0;
margin: 0
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
/* width: 100%; */
/* height: 100%; */
/* background-color: rgba(127, 255, 212, 0.301); */
/* overflow: hidden; */
font-family: 'Questrial', sans-serif;
}
button {
background-color: rgb(255, 255, 255);
width: 200px;
font-size: 20px;
padding: 10px;
/* position: absolute; */
/* right: 0; */
/* bottom: 0; */
color: rgb(226, 67, 67);
cursor: pointer;
font-family: 'Questrial', sans-serif;
border-radius: 6px;
border: 2px solid red
}
.icon {
width: 100%;
max-width: 100px;
height: auto;
}
nav{
/* padding: 20px; */
height: 10vh;
display: flex;
justify-content: space-between;
align-items: center;
width: 100%
}
nav >*{
margin: 20px
}
.container{
background: rgb(255,255,255);
background: linear-gradient(90deg, rgba(255,255,255,1) 63%, rgb(249 240 240) 63%);
height:88vh;
/* width:100%; */
z-index: 10;
border-radius: 6px;
width: 98vw;
margin-top: 2vh;
}
.animated {
background: linear-gradient(270deg, #e50010, #ffffff);
background-size: 400% 400%;
-webkit-animation: AnimationName 30s ease infinite;
-moz-animation: AnimationName 30s ease infinite;
-o-animation: AnimationName 30s ease infinite;
animation: AnimationName 30s ease infinite;
}
@-webkit-keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@-o-keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
.animated-2 {
background: linear-gradient(270deg, #ffffff, #e50010);
background-size: 400% 400%;
-webkit-text-fill-color: transparent;
background-clip: unset;
-webkit-background-clip: text;
-webkit-animation: AnimationName 30s ease infinite;
-moz-animation: AnimationName 30s ease infinite;
-o-animation: AnimationName 30s ease infinite;
animation: AnimationName 30s ease infinite;
}
@-webkit-keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@-o-keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}