-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.less.css
More file actions
82 lines (82 loc) · 1.41 KB
/
Copy pathstyles.less.css
File metadata and controls
82 lines (82 loc) · 1.41 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
/* Колірна палітра */
/* Soft light gray */
/* Deep teal */
/* Soft mint green */
/* Warm beige */
/* Rich amber */
/* Dark navy blue */
/* Pure white */
/* Глобальні стилі */
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #F3F4F6;
color: #264653;
}
/* Стилі для header */
header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #005F73;
padding: 1rem;
}
header .logo {
font-size: 1.5rem;
font-weight: bold;
color: #FFFFFF;
}
header .navigation ul {
list-style: none;
display: flex;
gap: 1rem;
margin: 0;
padding: 0;
}
header .navigation ul a {
text-decoration: none;
color: #E9D8A6;
font-weight: bold;
transition: color 0.3s ease;
}
header .navigation ul a:hover {
color: #EE9B00;
}
header .search input {
padding: 0.5rem;
border: 1px solid #94D2BD;
border-radius: 5px;
}
/* Додаткові стилі */
main {
display: grid;
grid-template-columns: 1fr 3fr 1fr;
gap: 1rem;
padding: 1rem;
}
.sidebar,
.trends {
background-color: #94D2BD;
padding: 1rem;
border-radius: 5px;
color: #264653;
}
.main-content {
background-color: #E9D8A6;
padding: 1rem;
border-radius: 5px;
}
.highlight img {
width: 100%;
height: auto;
border-radius: 5px;
}
.news h2 {
color: #EE9B00;
}
footer {
background-color: #005F73;
text-align: center;
padding: 1rem;
color: #FFFFFF;
}