summaryrefslogtreecommitdiff
path: root/style.css
blob: c9c0837a03edfaf7dc73e717a92d99896924b250 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
body, html, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.todo {
    color: gainsboro;
    font-style: italic;
}

.button {
    padding: 6px;
    color: black;
    background-color: #f5f5f5;
}

.button:hover {
    background-color: black;
    color: white;
    text-decoration: line-through;
}

.container {
    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
}

.wrapper {
    padding-top: 12px;
    width: 50%;
}

.brand {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.brand img {
    width: 64px;
    padding-right: 12px;
}

.preview-container {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
}

.preview-container .control-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.preview-container .control {
    display: flex;
    flex-direction: row-reverse;
    flex-grow: 1;
}



.preview {
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: gainsboro;

    padding: 16px 16px;
    margin: 16px 0;
}

.preview img {
    max-width: 100%;
}