-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (76 loc) · 1.54 KB
/
style.css
File metadata and controls
105 lines (76 loc) · 1.54 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
div {
/* tag selector */
}
div div div .b1 {
/* select specifically */
}
.dropdown-content {
display:none;
}
.dropdown:hover .dropdown-content {
display:block;
}
button {
background-color: brown;
}
.anim {
animation-name: shiftColors;
animation-duration: 10s;
animation-delay: 0s;
animation-iteration-count: infinite;
}
@keyframes shiftColors {
0% {
background-color: aliceblue;
position: fixed;
top: 20px;
left: 20px;;
}
100%{
background-color: azure;
position: fixed;
top: 20px;
left: 300px;
}
}
.loader {
width: 600px;
height: 600px;;
display: flex;
gap: 10px;
justify-content: center;
align-items: center;
}
.item {
width: 50px;
height: 100px;;
background-color: black;
animation-name: jump;
animation-duration: 2s;
animation-delay: 0s;
animation-iteration-count: infinite;
}
.item1 {background-color: chocolate;}
.item2 {background-color: crimson;
animation-delay: 0.4s;}
.item3 {background-color: cyan; animation-delay: 0.8s;}
.item4 {background-color: darkorchid; animation-delay: 1.2s;}
.item5 {background-color: chartreuse; animation-delay: 1.6s;}
@keyframes jump {
0% {
position: relative;
top: 20px;
}
50%{
position: relative;
top: 0px;
}
100%{
position: relative;
top: 20px;
}
}
.dark {
background-color: rgb(44, 44, 44);
color: rgb(217, 220, 223);
}