-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
96 lines (83 loc) · 2.12 KB
/
styles.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
body {
font-family: 'Arial', sans-serif;
background-color: #101823; /* Arka plan rengi */
margin: 0;
padding: 20px;
color: white; /* Yazı rengi */
}
h1 {
color: #ff4654; /* Başlık rengi */
text-align: center;
margin-bottom: 20px;
}
p {
line-height: 1.6;
}
form {
background: rgba(255, 255, 255, 0.1); /* Yarı saydam beyaz arka plan */
border-radius: 8px;
padding: 20px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
margin-bottom: 20px;
}
label {
font-weight: bold;
display: block;
margin-bottom: 8px;
color: white; /* Yazı rengi */
}
input[type="password"] {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 16px;
transition: border-color 0.3s;
background-color: #1c2533; /* Koyu arka plan */
color: white; /* Yazı rengi */
}
input[type="password"]:focus {
border-color: #ff4654; /* Buton rengi odak rengi */
outline: none;
}
button {
background-color: #ff4654; /* Buton rengi */
color: white; /* Yazı rengi */
padding: 10px 15px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s;
}
button:hover {
background-color: #e83b4a; /* Koyu kırmızı hover rengi */
}
#status-message {
margin-top: 10px;
font-weight: bold;
color: #d9534f; /* Kırmızı renk */
}
.info-section {
background-color: rgba(255, 255, 255, 0.1); /* Yarı saydam beyaz arka plan */
border-radius: 8px;
padding: 20px;
margin-top: 20px;
color: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.info-section h3 {
color: #ff4654; /* Bilgilendirme başlığı rengi */
}
/* Bilgilendirme kartları */
.info-card {
background-color: #1c2533; /* Kart arka plan rengi */
border-radius: 5px;
padding: 15px;
margin-bottom: 10px;
border-left: 5px solid #ff4654; /* Sol kenar rengi */
}
.info-card p {
margin: 0; /* Paragrafın altındaki varsayılan boşluğu kaldır */
}