-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
29 lines (27 loc) · 716 Bytes
/
style.css
File metadata and controls
29 lines (27 loc) · 716 Bytes
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
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #1a1a1a; /* Koyu modern arka plan */
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#Clock {
background: #2d2d2d;
color: #00ffcc; /* Neon yeşil/mavi tonu */
font-size: 80px;
font-weight: bold;
padding: 20px 50px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
0 0 20px rgba(0, 255, 204, 0.2);
letter-spacing: 5px;
border: 2px solid #333;
transition: all 0.3s ease;
}
#Clock:hover {
transform: scale(1.05);
box-shadow: 0 0 40px rgba(0, 255, 204, 0.4);
}