forked from Khanateyktech/basithabersitesi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iletisimsayfasi.css
89 lines (76 loc) · 1.29 KB
/
iletisimsayfasi.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
/* Genel Stil */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
/* Header */
header {
background-color: #333;
color: white;
padding: 1em;
text-align: center;
}
/* İletişim Formu */
#iletisim-formu {
margin: 2em;
padding: 2em;
background-color: #f5f5f5;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
form label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
form input,
form textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 3px;
}
form button {
background-color: #333;
color: white;
padding: 10px 20px;
border: none;
border-radius: 3px;
cursor: pointer;
}
/* Sosyal Medya */
#sosyal-medya {
margin: 2em;
text-align: center;
}
#sosyal-medya h2 {
margin-bottom: 10px;
}
#sosyal-medya ul {
list-style: none;
padding: 0;
}
#sosyal-medya ul li {
margin-bottom: 10px;
}
#sosyal-medya ul li a {
color: #333;
text-decoration: none;
transition: color 0.3s;
}
#sosyal-medya ul li a:hover {
color: #f39c12;
}
/* Diğer stiller ... */
/* Footer Stili */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1em;
}
.footer-text {
margin: 0;
}