-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_array_sum_2.css
More file actions
59 lines (54 loc) · 1.13 KB
/
Copy pathstyle_array_sum_2.css
File metadata and controls
59 lines (54 loc) · 1.13 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
@import url('https://fonts.googleapis.com/css2?family=Tilt+Prism&display=swap');
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
h1{
text-align: center;
font-size: 5rem;
}
pre{
font-size: 1.9rem;
}
.res{
display: flex;
}
h2{
font-family: monospace;
font-size: 2rem;
margin-left: 4rem;
font-weight: 300;
}
button{
padding: 2rem 4rem 2rem 4rem;
margin-left: 40rem;
padding-top: 4rem;
padding-bottom: 4rem;
color: white;
font-weight: 1000;
font-size: 1.4rem;
text-shadow: 3px 3px 19px white;
box-shadow: 3px 3px 19px white;
color: black;
}
main{
color: white;
font-family: 'Tilt Prism', cursive;
z-index: -1;
height: 100%;
width: 100%;
left:0;
right: 0;
top: 0;
bottom: 0;
position: absolute;
background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
background-size: 1800% 1800%;
animation: rainbow 5s ease infinite;
}
@keyframes rainbow {
0%{background-position:0% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}