-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (109 loc) · 1.81 KB
/
Copy pathstyle.css
File metadata and controls
118 lines (109 loc) · 1.81 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
header{
width: 100%;
height: 20%;
position: fixed;
display: flex;
justify-content: space-between;
border-bottom: 2px solid #dadada;
box-shadow: 0px 0px 10px;
top: 0;
right: 0;
left: 0;
background-color: white;
}
nav{
width: 40%;
display: flex;
align-items: center;
margin-left: 3vh;
}
.logo{
width: 30%;
cursor: pointer;
}
ul{
display: flex;
gap: 20px;
font-size: 20px;
font-weight: bold;
margin-left: 120vh;
}
.l1{
list-style: none;
}
.i1:hover{
color: red;
}
.line{
color: black;
text-decoration: none;
transition: all 0.5s;
}
.line:hover{
color: red;
}
.is{
width: 45%;
margin-top: 20vh;
margin-left: 10vh;
}
.is2{
width: 30%;
margin-top: 30vh;
margin-left: 20vh;
}
.is3{
width: 30%;
margin-top: 20vh;
margin-left: 5vh;
}
.is4{
margin-left: 30vh;
}
.oa{
text-align: center;
font-size: 50px;
font-weight: bold;
animation-name: ao;
animation-duration: 5s;
animation-fill-mode: forwards;
}
.op{
font-size: 30px;
text-transform: capitalize;
font-weight: bold;
text-align: center;
animation-name: ro;
animation-duration: 2s;
color: navy;
transform: scale(1.0.5);
}
.ot{
font-size: 30px;
text-transform: capitalize;
font-weight: bold;
text-align: center;
animation-name: or;
animation-duration: 2s;
color: navy;
transform: scale(1.0.5);
}
.bol{
color: black;
font-size: 40px;
}
@keyframes ro {
to{
transform: scale(1.05);
color: navy;
}
from{
transform: scale(0.15);
}
}
@keyframes ao {
to{
background-color: black;
color: white;
}
}