-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
50 lines (49 loc) · 958 Bytes
/
index.css
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{
position: absolute;
top: 50%; left: 50%;
transform : translateX(-50%) translateY(-50%) translateZ(0);
background-color: #1099bb;
}
#giris{
display: flex;
}
#start{
background-color: transparent;
border: solid #2c3e50 5px;
border-left: 0;
width: 80px;
cursor: pointer;
opacity: 0;
margin-right: 50px;
animation: opacity 2s ease-out forwards;
animation-delay: 1s;
}
#start svg {
width: 50px;
height: 50px;
fill: #2C3E50;
transform: rotate(-90deg);
transition: all 0.5s;
}
img{
animation: opacity 2s ease-out forwards;
opacity: 0;
}
#start svg:hover{
fill: #fff;
transform: rotate(0deg);
}
@keyframes opacity{
0%{
opacity: 0;
}
100%{
opacity: 1;
}
}
p{
text-align: center;
font-family: Tahoma, sans-serif;
font-weight: bold;
color: #fff
}