-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
104 lines (88 loc) · 1.46 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
97
98
99
100
101
102
103
104
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #F4F4F9;
color: #333;
line-height: 1.6;
}
header {
background: linear-gradient(135deg, #6A82FB, #FC5C7D);
color: white;
padding: 20px 0;
text-align: center;
}
.container {
max-width: 960px;
margin: auto;
padding: 0 20px;
}
nav ul {
display: flex;
justify-content: center;
list-style: none;
}
nav ul li {
margin: 0 20px;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 18px;
transition: color 0.3s;
}
nav ul li a:hover {
color: #E2E2E2;
}
main {
padding: 20px;
text-align: center;
}
section {
margin: 20px auto;
max-width: 800px;
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
h1,
h2 {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.card {
background: #FFFFFF;
margin: 20px 0;
padding: 20px;
border-left: 5px solid #FC5C7D;
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.card:hover {
transform: scale(1.05);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.card a {
color: #6A82FB;
font-size: 20px;
font-weight: bold;
text-decoration: none;
}
.card p {
color: #666;
}
footer {
text-align: center;
padding: 10px 0;
background-color: #333;
color: white;
position: fixed;
bottom: 0;
width: 100%;
}
a:hover {
text-decoration: underline;
}