-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
90 lines (76 loc) · 1.4 KB
/
styles.css
File metadata and controls
90 lines (76 loc) · 1.4 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
83
84
85
86
87
88
89
90
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
background-color: #f0f2f5;
}
header {
background-color: #333;
color: white;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2em;
}
nav ul {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
margin: 0;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 1.1em;
}
nav ul li a:hover {
text-decoration: underline;
}
main {
flex: 1;
padding: 20px;
background-color: #fff;
max-width: 900px;
margin: 20px auto;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
.intro, .features, .privacy-policy, .terms-of-service {
margin-bottom: 20px;
}
.intro h2, .features h2, .privacy-policy h2, .terms-of-service h2 {
color: #333;
border-bottom: 2px solid #e0e0e0;
padding-bottom: 10px;
}
.intro p, .privacy-policy p, .terms-of-service p, section p {
line-height: 1.6;
color: #555;
}
.features ul {
list-style: disc inside;
padding-left: 20px;
}
.features li {
margin-bottom: 10px;
font-size: 1.1em;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 15px 0;
font-size: 0.9em;
}
footer p {
margin: 0;
}