-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (48 loc) · 833 Bytes
/
style.css
File metadata and controls
50 lines (48 loc) · 833 Bytes
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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f8f9fa;
animation: forwards;
}
.item-1 {
display: flex;
flex-direction: row;
gap: 10px;
border: 4px solid #ff0000;
padding: 20px;
animation: forwards;
}
.item-2 {
display: flex;
flex-direction: row;
gap: 10px;
border: 4px solid #4800ff;
padding: 20px;
animation: infinite;
}
.item-3 {
display: flex;
flex-direction: row;
gap: 50px;
border: 4px solid #ff0000;
padding: 20px;
animation: reverse;
}
.box {
background-color: #f66;
color: blue;
padding: 20px 30px;
border-radius: 10px;
font-weight: bold;
text-align: center;
animation: forwards;
}
.container{
justify-content: center;
border-radius: 20%;
animation: infinite;
display: flex;
}