-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (65 loc) · 1.23 KB
/
style.css
File metadata and controls
77 lines (65 loc) · 1.23 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
/* Общие настройки */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
font-size: 16px;
color: #222;
background-color: #ffffff;
line-height: 1.6;
}
/* Контейнер */
main {
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
}
/* Заголовок сайта */
header {
background-color: #f2f2f2;
padding: 80px 20px;
text-align: center;
}
header h1 {
font-size: 36px;
margin-bottom: 10px;
color: #222;
}
header p {
font-size: 18px;
color: #666;
}
/* Основной контент */
main h2 {
font-size: 24px;
margin-top: 40px;
margin-bottom: 15px;
color: #333;
}
main p {
margin-bottom: 15px;
}
/* Футер */
footer {
background-color: #f7f7f7;
border-top: 1px solid #ddd;
text-align: center;
padding: 20px;
font-size: 14px;
color: #555;
}
/* Адаптивность для мобильных */
@media (max-width: 768px) {
header h1 {
font-size: 28px;
}
main h2 {
font-size: 20px;
}
main {
padding: 20px;
}
}