-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss1.css
58 lines (51 loc) · 1.13 KB
/
css1.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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 20px;
background-color: #f9f9f9;
}
header {
text-align: center;
padding: 20px;
background-color: #3498db;
color: #fff;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header img {
border-radius: 100%;
max-width: 150px;
border: 6px solid #fff;
}
h1, h2, h3 {
color: #3498db;
}
section#main {
text-align: center;
margin: 50px auto;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
section#main a {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
background-color: #3498db;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
section#main a:hover {
background-color: #2980b9;
}
footer {
text-align: center;
margin-top: 20px;
padding: 10px;
background-color: #3498db;
color: #fff;
border-radius: 10px;
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}