summaryrefslogtreecommitdiff
path: root/static/main.css
blob: a5305a4a0ab8a803c1a35c5da9643ac3628648d7 (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
body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #424242;
    color: #ffffff;
    font-family: "Roboto", "Open Sans", "Montserrat", sans-serif;
    font-size: 1.25em;

}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #703f96;
    padding: 0 2rem;
    color: white;
}

.stream-status {
    border-bottom: solid 1px white;
    animation: flash 0.75s infinite alternate;
    font-size: 1.5rem;
}

.content {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

code {
    font-family: "Iosekva", "Inconsolata", monospace;
    font-size: 1.25em;
}

.block {
    display: flex;
    flex-direction: column;
    max-width: 75%;
    align-self: center;
}

a {
  color: #FF88FF;
  text-decoration: none;
}
a:hover {
  border-bottom: solid 1px #FF88FF;
}

#conversejs {
    border: solid 2px black;
}

.chat {
    width: 27%;
}

.stream {
    border: solid 2px black;
    align-self: flex-start;
    width: 70%;
}