We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d09d019 commit 291ba19Copy full SHA for 291ba19
src/assets/css/global.css
@@ -144,4 +144,30 @@ textarea:focus {
144
.container {
145
max-width: 1200px;
146
margin: 0 auto;
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