-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (66 loc) · 1.24 KB
/
Copy pathstyle.css
File metadata and controls
79 lines (66 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
body {
font-family: 'Arial', sans-serif;
background-color: #ffe6f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
}
h1 {
color: #eb2e9f;
font-size: 2.5rem;
}
.buttons {
margin-top: 20px;
text-align: center;
height: 100px;
position: static; /* veya kaldır */
}
.gif-container img {
width: 350px;
height: 350px; /* Kare yapmak istersen */
object-fit: contain; /* Görüntüyü bozmadan sığdırır */
border: none; /* Çerçeveyi kaldırır */
box-shadow: none; /* Gölgeyi kaldırır */
}
/* Sol altta */
.bottom-left {
position: fixed;
bottom: 20px;
left: 20px;
z-index: 10;
}
/* Sağ altta */
.bottom-right {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 10;
}
button {
font-size: 1.2rem;
padding: 10px 20px;
margin: 10px;
border: none;
border-radius: 10px;
cursor: pointer;
transition: 0.3s;
}
#yesBtn {
background-color: #ff66a3;
color: white;
}
#noBtn {
background-color: #ff99d4;
color: white;
position: absolute;
}
#response {
font-size: 1.8rem;
margin-top: 30px;
color: #cc0066;
}