Last change
on this file since 0e4e3d1 was 8423429, checked in by AngelNasev <angel.nasev@…>, 17 months ago |
Add backend and frontend projects
|
-
Property mode
set to
100644
|
File size:
547 bytes
|
Line | |
---|
1 | .card {
|
---|
2 | display: flex;
|
---|
3 | background-color: #3A98B9;
|
---|
4 | width: 200px;
|
---|
5 | height: 200px;
|
---|
6 | margin: 10px;
|
---|
7 | padding: 5px;
|
---|
8 | align-items: center;
|
---|
9 | justify-content: center;
|
---|
10 | border-radius: 10px;
|
---|
11 | color: #FFF1DC;
|
---|
12 | font-weight: normal;
|
---|
13 | font-size: large;
|
---|
14 | }
|
---|
15 |
|
---|
16 | .container {
|
---|
17 | display: flex;
|
---|
18 | flex-wrap: wrap;
|
---|
19 | }
|
---|
20 |
|
---|
21 | .parent-container {
|
---|
22 | display: flex;
|
---|
23 | flex-direction: column;
|
---|
24 | justify-content: center;
|
---|
25 | margin-left: 200px;
|
---|
26 | margin-right: 200px;
|
---|
27 | }
|
---|
28 |
|
---|
29 | a {
|
---|
30 | text-decoration: none;
|
---|
31 | color: #FFF1DC;
|
---|
32 | }
|
---|
33 |
|
---|
34 | .card:hover {
|
---|
35 | box-shadow: 0 0 2px 2px #E1DDDD;
|
---|
36 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.