-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
82 lines (71 loc) · 1.37 KB
/
styles.css
File metadata and controls
82 lines (71 loc) · 1.37 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
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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to bottom, #e6e6fa, #dcdcff);
color: #333;
text-align: center;
}
nav {
background: #cbbcff;
padding: 10px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
color: #333;
text-decoration: none;
font-size: 18px;
padding: 8px 16px;
border-radius: 8px;
transition: background 0.3s, color 0.3s;
}
nav ul li a:hover,
nav ul li a.active {
background: #f0e6ff;
color: #6c63ff;
}
header {
padding: 40px 10px;
background: rgba(255, 255, 255, 0.6);
margin: 30px auto;
width: 85%;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
header h1 {
color: #6c63ff;
font-size: 2.5rem;
}
section {
margin: 30px auto;
width: 85%;
padding: 30px 20px;
background: rgba(255, 255, 255, 0.7);
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
text-align: left;
}
section h2 {
color: #6c63ff;
margin-bottom: 1rem;
}
section p {
font-size: 1.1rem;
line-height: 1.6;
}
footer {
padding: 20px;
font-size: 0.9rem;
color: #666;
background: #f8f8ff;
border-top: 1px solid #ddd;
}