-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
140 lines (120 loc) · 2.72 KB
/
style.css
File metadata and controls
140 lines (120 loc) · 2.72 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/* Genel Ayarlar ve Değişkenler */
:root {
--primary-color: #007bff; /* HYP Blue - Vurgu Rengi */
--primary-hover: #0056b3;
--text-color: #333;
--background-color: #ffffff;
--light-gray: #f8f9fa;
--warning-bg: #fff3cd; /* Yasal uyarı için sarı arka plan */
--warning-text: #856404; /* Yasal uyarı için koyu metin */
}
/* Temel Sıfırlama ve Font */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern, yaygın font */
line-height: 1.6;
color: var(--text-color);
background-color: var(--background-color);
margin: 0;
padding: 0;
}
/* --- Sayfa Yapısı --- */
header {
text-align: center;
padding: 40px 20px 20px;
background-color: var(--light-gray);
border-bottom: 1px solid #ddd;
}
main {
max-width: 800px;
margin: 0 auto; /* Sayfayı ortalar */
padding: 30px 20px;
}
footer {
padding: 30px 20px;
background-color: #f1f1f1;
text-align: center;
border-top: 1px solid #e0e0e0;
}
/* --- Başlıklar --- */
h1 {
color: var(--primary-hover);
font-size: 2.5em;
margin-bottom: 10px;
}
h2 {
color: var(--text-color);
border-bottom: 2px solid #eee;
padding-bottom: 8px;
margin-top: 30px;
font-size: 1.7em;
}
/* --- İndirme Butonları (CTA) --- */
.download-buttons {
margin-top: 30px;
display: flex;
justify-content: center;
align-items: center;
gap: 20px; /* Butonlar arasındaki boşluk */
flex-wrap: wrap;
}
.download-buttons img {
width: 180px;
height: auto;
transition: transform 0.2s; /* Hafif animasyon */
}
.download-buttons a:hover img {
transform: scale(1.05);
}
/* --- Özellikler Listesi --- */
.features ul {
list-style: none;
padding-left: 0;
}
.features li {
margin-bottom: 15px;
padding-left: 35px;
position: relative;
text-align: left;
}
.features li::before {
content: '✅'; /* Modern tik işareti */
position: absolute;
left: 0;
top: 0;
font-size: 1.2em;
}
/* --- Yasal Uyarı Bölümü --- */
.legal-disclaimer {
background-color: var(--warning-bg);
color: var(--warning-text);
padding: 15px;
border: 1px solid #ffeeba;
border-radius: 5px;
margin-bottom: 20px;
}
.legal-disclaimer p {
margin: 5px 0;
font-size: 0.95em;
}
/* --- Footer Linkleri --- */
footer a {
color: var(--primary-color);
text-decoration: none;
margin: 0 10px;
}
footer a:hover {
text-decoration: underline;
}
/* --- Mobil Uyumlu Tasarım --- */
@media (max-width: 600px) {
h1 {
font-size: 2em;
}
.download-buttons {
flex-direction: column; /* Mobil cihazlarda dikey hizalama */
gap: 15px;
}
.download-buttons img {
width: 160px;
}
}