-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
82 lines (72 loc) · 1.34 KB
/
styles.css
File metadata and controls
82 lines (72 loc) · 1.34 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
/* css styles */
.photo-modal-caption {
position: absolute;
bottom: 1rem;
left: 50%;
transform: translateX(-50%);
max-width: 90%;
background: rgba(0, 0, 0, 0.65);
padding: 0.75rem 1rem;
border-radius: 0.5rem;
line-height: 1.4;
text-align: center;
}
/* Language switcher styles */
#language-switcher {
position: fixed;
top: 20px;
right: 20px;
z-index: 1000;
display: flex;
gap: 10px;
}
#language-switcher button {
background: white;
border: 2px solid #333;
padding: 8px 12px;
cursor: pointer;
border-radius: 5px;
transition: all 0.3s ease;
font-size: 14px;
}
#language-switcher button:hover {
background: #f0f0f0;
transform: scale(1.05);
}
#language-switcher button[style*="font-weight: bold"] {
background: #0066cc;
color: white;
border-color: #0066cc;
}
/* Profile section styles */
#hero-heading {
margin-bottom: 3rem;
}
#hero-heading h2 {
margin-bottom: 1rem;
color: #2c3e50;
}
#hero-heading h3 {
color: #34495e;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
/* Section dividers */
hr {
margin: 3rem 0;
border: none;
border-top: 2px solid #e0e0e0;
}
/* Responsive design */
@media (max-width: 768px) {
#language-switcher {
top: 10px;
right: 10px;
flex-direction: column;
gap: 5px;
}
#language-switcher button {
padding: 6px 10px;
font-size: 12px;
}
}