-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEducation.module.css
More file actions
128 lines (110 loc) · 1.74 KB
/
Education.module.css
File metadata and controls
128 lines (110 loc) · 1.74 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
.container {
padding: 2rem;
display: flex;
flex-direction: column;
gap: 2rem;
background: #ffffff;
margin-bottom: 250px;
}
.header {
text-align: center;
}
.school {
font-size: 2rem;
font-weight: 700;
margin: 0;
}
.degree {
font-size: 1.2rem;
color: #555;
margin: 0.5rem 0;
}
.minors {
font-size: 1rem;
color: #777;
margin: 0;
}
.period {
font-size: 0.9rem;
color: #999;
}
.classesSection {
display: flex;
flex-direction: column;
gap: 1rem;
}
.sectionTitle {
font-size: 1.5rem;
text-align: center;
margin-bottom: 1rem;
position: relative;
}
.sectionTitle::after {
content: "";
display: block;
width: 3rem;
height: 0.25rem;
background-color: #8ee0f2;
margin: 0.5rem auto 0;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1.5rem;
}
.card {
background: #fff;
border: 1px solid #e2e8f0;
border-radius: 0.5rem;
padding: 1rem;
display: flex;
flex-direction: column;
gap: 0.75rem;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.classTitle {
font-size: 1.1rem;
font-weight: 600;
margin: 0;
}
.classDesc {
font-size: 0.95rem;
color: #555;
margin: 0;
}
.skillList {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
list-style: none;
padding: 0;
margin: 0;
margin-top: auto;
}
.skillItem {
background: #f0f0f0;
border-radius: 0.25rem;
padding: 0.25rem 0.5rem;
font-size: 0.85rem;
color: #333;
}
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fadeUp {
opacity: 0;
transform: translateY(20px);
animation: fadeUp 0.6s ease-out forwards;
}
@media (max-width: 768px) {
.grid {
grid-template-columns: 1fr;
}
}