-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylequestion.css
123 lines (106 loc) · 2.45 KB
/
stylequestion.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
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
119
120
121
122
123
/* Container */
.container {
text-align: center;
max-width: 600px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f9f9f9;
}
/* Soru başlığı */
h2 {
font-size: 24px;
margin-bottom: 10px;
}
/* Soru metni */
p {
font-size: 16px;
margin-bottom: 20px;
}
/* Seçenekler */
.options {
display: flex;
flex-direction: column;
align-items: center;
font-family: "Comic Sans MS", cursive; /* Comic Sans MS yazı tipi kullanma */
}
/* Seçenekler arası boşluk */
label {
margin: 5px 0;
font-family: "Comic Sans MS", cursive; /* Comic Sans MS yazı tipi kullanma */
}
/* Cevap kontrol düğmesi */
#checkButton {
padding: 10px 20px;
background-color: #007BFF;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s;
}
#checkButton:hover {
background-color: #0056b3;
}
/* Görünmez buton */
.invisible-button {
position: absolute;
bottom: 0;
right: 0;
background-color: rgb(0, 0, 0);
color: rgb(253, 253, 253);
border: none;
outline: none;
cursor: pointer;
}
.custom-popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 300px;
padding: 20px;
background-color: #fff;
border: 1px solid #ccc;
box-shadow: 0 0 100px rgba(0, 0, 0, 0.2);
font-family: Arial, sans-serif;
font-size: 16px;
color: #333;
z-index: 999;
}
.popup-content {
text-align: center;
}
#closePopup {
margin-top: 10px;
background-color: #007BFF;
color: #fff;
border: none;
border-radius: 5px;
padding: 5px 10px;
cursor: pointer;
}
#closePopup:hover {
background-color: #0056b3;
}
/* Diğer stiller burada yer alacak */
/* Menu butonu */
.menu-button {
position: absolute;
top: 10px;
left: 10px;
background-color: #d00; /* Koyu kırmızı renk */
color: #fff; /* Beyaz metin rengi */
border: none;
border-radius: 5px;
padding: 5px 10px;
text-decoration: none; /* Link altı çizgisini kaldırır */
cursor: pointer;
transition: background-color 0.3s; /* Geçiş efekti */
}
.menu-button:hover {
background-color: #a00; /* Daha koyu kırmızı hover rengi */
}