-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (52 loc) · 1.14 KB
/
style.css
File metadata and controls
57 lines (52 loc) · 1.14 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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
margin: 0;
padding: 0;
background: linear-gradient(to right, #e0eafc, #cfdef3);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
h1 {
color: #2c3e50;
font-size: 3rem;
margin-bottom: 20px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
.buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
margin-bottom: 30px;
}
.buttons a {
padding: 12px 25px;
background-color: #3498db;
color: white;
text-decoration: none;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
transition: all 0.3s ease;
font-weight: bold;
letter-spacing: 0.5px;
}
.buttons a:hover {
background-color: #2980b9;
transform: translateY(-3px);
box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
#profile {
margin-top: 20px;
font-size: 18px;
background: white;
padding: 20px 30px;
border-radius: 15px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
max-width: 500px;
line-height: 1.6;
color: #34495e;
}