Skip to content

Commit 291ba19

Browse files
committed
Add flex-items boxes
1 parent d09d019 commit 291ba19

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

src/assets/css/global.css

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,30 @@ textarea:focus {
144144
.container {
145145
max-width: 1200px;
146146
margin: 0 auto;
147-
}
147+
}
148+
149+
/* Flex Items */
150+
.flex-items {
151+
display: flex;
152+
align-items: center;
153+
justify-content: center;
154+
}
155+
156+
.flex-items a {
157+
display: block;
158+
margin: 0 20px;
159+
transition: all 0.4s ease-in-out;
160+
}
161+
162+
.flex-items a:hover {
163+
transform: translateY(-10px);
164+
box-shadow: 2px 2px 5px rgba(9, 156, 176, 0.5);
165+
border-radius: 11px;
166+
}
167+
168+
.item {
169+
border: 1px solid #ddd;
170+
border-radius: 10px;
171+
box-shadow: 3px 5px 5px var(--shadow);
172+
}
173+

0 commit comments

Comments
 (0)