-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (74 loc) · 1.24 KB
/
style.css
File metadata and controls
90 lines (74 loc) · 1.24 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
.contant{
display: flex;
justify-content: space-between;
gap: 10px;
}
.box {
border: 1px solid red;
border-radius: 20px;
padding: 20px;
margin: 1%;
width: 30%;
}
/* h3 {
text-align: center;
} */
#mid {
text-align: center;
}
@keyframes ol {
25% {
background-color: rgba(0, 255, 76, 0.587);
width: 25px;
height: 25px;
}
50% {
background-color: rgb(227, 9, 24);
width: 60%;
height: 300px;
}
75%{
background-color: rgb(7, 123, 232);
width: 80%;
height: 275px;
}
100% {
background-color:rgba(238, 11, 219, 0.91);
width: 85%;
height: 300px;
}
}
ol {
width: 50px;
height: 200px;
animation-name: ol;
animation-duration: 5s;
animation-iteration-count: infinite;
}
.h1 {
color: hotpink;
}
h1:hover {
color: purple;
font-size: 30px;
}
li:nth-child(2n) {
background-color: rgba(8, 235, 95, 0.562);
}
li::before {
content: " Engineer ";
}
.img-box img{
width: 100%;
height: auto;
}
.img-box{
display:grid;
grid-template-columns: repeat(3,1fr);
gap: 50px;
}
.center{
display: flex;
align-items: center;
justify-content: center;
}