-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
142 lines (121 loc) · 2.29 KB
/
style.css
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
142
@charset "utf-8";
/* General */
body {
font-family: "Montserrat", sans-serif;
color: #333;
background-color: #f7f7f7;
}
/* Header */
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 2rem;
}
header h1 {
font-size: clamp(2.5rem, 5vw, 4rem);
margin: 0;
}
/* Navigation */
nav {
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
background-color: #eee;
font-weight: bold;
padding: 1rem;
}
nav a {
text-decoration: none;
color: #333;
padding: 0.5rem;
transition: background-color 0.3s ease;
}
nav a:hover {
background-color: #333;
color: #fff;
border-radius: 5px;
}
nav a.active {
color: #fff;
background-color: #333;
border-radius: 5px;
}
/* Sections */
section {
margin: 3rem 0;
padding: 1rem;
background-color: #fff;
border-radius: 5px;
box-shadow: 0px 0px 5px 1px #ddd;
}
section h2 {
font-size: 2rem;
margin: 0 0 1rem;
}
section ul {
padding: 1;
margin: 0.5rem 0;
}
section ul li {
margin: 0.5rem 0;
font-size: 1.1rem;
}
section ul li a {
color: #003399;
transition: color 0.3s ease;
}
section ul li a:hover {
color: #aaa;
}
/* Links */
a {
text-decoration: none;
color: #333;
transition: color 0.3s ease;
}
a:hover {
color: #aaa;
}
/* Responsive */
@media only screen and (max-width: 600px) {
nav {
display: none;
flex-direction: column;
justify-content: center;
text-align: center;
}
nav a {
display: none;
padding: 0.5rem 0;
}
nav a:hover {
display: none;
background-color: #333;
color: #fff;
border-radius: 5px;
}
nav a.active {
display: none;
color: #fff;
background-color: #333;
border-radius: 5px;
}
}
/* Special styling for the Japanese language switch button */
nav a.language-switch {
color: #fff;
background-color: #007bff;
border: 2px solid #007bff;
border-radius: 5px;
padding: 0.5rem 1rem;
transition: all 0.3s ease;
}
/* Hover effect for the language switch button */
nav a.language-switch:hover {
background-color: #0056b3;
border-color: #0056b3;
color: #fff;
transform: scale(1.1);
}