-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorkExperience.module.css
More file actions
62 lines (55 loc) · 1.01 KB
/
WorkExperience.module.css
File metadata and controls
62 lines (55 loc) · 1.01 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
.container {
margin: 0 auto;
background-color: #fff;
border-radius: 10px;
margin-top: 10px;
padding-bottom: 10px;
margin-bottom: 250px;
}
.header {
width: 100%;
background: #111827;
color: #f9fafb;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
padding: 0.75rem 1rem;
font-size: 2rem;
font-weight: bold;
text-align: center;
margin-bottom: 0.5rem;
margin-top: 0.5rem;
border-radius: 10px;
}
.tabs {
display: flex;
margin-bottom: 0.5rem;
justify-content: space-evenly;
background: #111827;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
/* Tab buttons */
.tab {
width: 50%;
background: transparent;
border: none;
padding: 0.5rem 1rem;
font-size: 2rem;
font-weight: 600;
cursor: pointer;
color: #fff;
border-bottom: 5px solid transparent;
transition: color 0.2s, border-color 0.2s;
}
.tab:hover {
color: #fff;
}
.activeTab {
color: #fff;
border-color: #8ee0f2;
}
/* mobile phones */
@media (max-width: 480px) {
.tab {
font-size: 1rem;
}
}