aswi20220x00-gitlab/webapp/styles/Link.module.scss @ 9e0a3340
1 | f30a7b90 | Lukáš Vlček | .page { |
---|---|---|---|
2 | display: flex; |
||
3 | flex-direction: column; |
||
4 | justify-content: center; |
||
5 | align-items: center; |
||
6 | align-content: center; |
||
7 | height: 100vh; |
||
8 | width: 100vw; |
||
9 | }
|
||
10 | |||
11 | .container { |
||
12 | display: flex; |
||
13 | flex-direction: column; |
||
14 | justify-content: stretch; |
||
15 | width: 100%; |
||
16 | max-width: 600px; |
||
17 | background-color: whitesmoke; |
||
18 | padding: 15px; |
||
19 | border-radius: 10px; |
||
20 | box-shadow: 5px 5px 5px #c9c9c9; |
||
21 | |||
22 | text-align: left; |
||
23 | |||
24 | .header { |
||
25 | border-radius: 10px 10px 0 0; |
||
26 | margin: -15px; |
||
27 | margin-bottom: 10px; |
||
28 | padding: 10px; |
||
29 | background-color: gainsboro; |
||
30 | font-size: large; |
||
31 | font-weight: bold; |
||
32 | }
|
||
33 | |||
34 | .button { |
||
35 | margin-top: 30px; |
||
36 | }
|
||
37 | }
|