-
Notifications
You must be signed in to change notification settings - Fork 0
/
mina.css
43 lines (38 loc) · 880 Bytes
/
mina.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
.container {
text-align: center;
color: white;
padding-top: 20px;
}
* {
background-color: rgb(35, 52, 73);
}
.button {
color: white;
width: 20%;
border: 1px solid white;
text-align: center;
height: 100px;
transition: box-shadow 0.3s ease; /* Geçiş efekti */
}
.buttondiv {
display: flex;
justify-content: space-evenly;
margin-top: 15%;
background-color: transparent;
}
.button1 {
color: white;
width: 20%;
text-decoration: none;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid white;
height: 100px;
transition: transform 0.3s ease, box-shadow 0.3s ease; /* Geçiş efektleri */
}
.button1:hover {
transform: translateY(-5px); /* Yükselme efekti */
box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Gölge efekti */
}