Projekt

Obecné

Profil

Stáhnout (641 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
.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
}
(3-3/6)