-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
141 lines (121 loc) · 2.31 KB
/
styles.css
File metadata and controls
141 lines (121 loc) · 2.31 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/* Basic styling inspired by soc.org.au, with modern, clean layout and Cyrillic font support */
body {
font-family: 'Roboto', Arial, sans-serif;
background: #f8f9fa;
color: #222;
margin: 0;
padding: 0;
}
header {
background: #2d3e50;
color: #fff;
padding-bottom: 1em;
}
.header-top {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1em 2em 0.5em 2em;
}
#logo {
height: 70px;
width: auto;
margin-right: 1em;
}
.header-title h1, .header-title h2 {
margin: 0;
font-weight: 700;
}
.header-title h2 {
font-size: 1.1em;
font-weight: 400;
}
#lang-switch button {
background: #fff;
color: #2d3e50;
border: none;
margin-left: 0.5em;
padding: 0.5em 1em;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
}
#lang-switch button:hover {
background: #e0e0e0;
}
nav {
background: #223044;
padding: 0.5em 2em;
}
#nav-list {
list-style: none;
display: flex;
gap: 2em;
margin: 0;
padding: 0;
}
#nav-list li a {
color: #fff;
text-decoration: none;
font-weight: 500;
transition: color 0.2s;
}
#nav-list li a:hover {
color: #ffd700;
}
#chiron {
background: #ffd700;
color: #2d3e50;
padding: 0.5em 2em;
font-weight: bold;
font-size: 1em;
}
main {
max-width: 900px;
margin: 2em auto;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
padding: 2em;
}
section {
margin-bottom: 2em;
}
section h2 {
color: #2d3e50;
border-bottom: 2px solid #ffd700;
padding-bottom: 0.3em;
margin-bottom: 1em;
}
footer {
background: #2d3e50;
color: #fff;
text-align: center;
padding: 1em 0;
margin-top: 2em;
}
footer a {
color: #ffd700;
text-decoration: none;
margin-left: 1em;
}
footer a:hover {
text-decoration: underline;
}
@media (max-width: 700px) {
.header-top {
flex-direction: column;
align-items: flex-start;
padding: 1em;
}
nav {
padding: 0.5em 1em;
}
main {
padding: 1em;
}
#nav-list {
flex-direction: column;
gap: 0.5em;
}
}