summaryrefslogtreecommitdiff
path: root/webcards/styles/home/base.css
blob: 2ef3693e40a5b7a76b93f3ec2943cd7394a5f4c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
* {
    font-family: 'Montserrat', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;

    min-width: 100vw;
    min-height: 100vh;

    display: block;
}

body {
    display: flex;

    align-items: center;
    justify-content: center;
}

div.content {
    padding: 20px;

    background-color: #ddd;
    border-radius: 10px;
    max-width: 500px;

    display: flex;
    text-align: center;
    flex-direction: column;

    align-items: center;
}

a {
    font-size: 24px;
    display: block;
    color: white;

    border-radius: 5px;
    padding: 5px;

    background-color: dodgerblue;
    
    transition-duration: 0.2s;

    text-decoration: none;

    margin-top: 10px;

    max-width: 100px;
}