summaryrefslogtreecommitdiff
path: root/public/css/style.css
blob: c07c25a6342dce7411a14089ca92c076b38975f7 (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
:root {
  --bg: #f5f7ff;
  --accent-bg: #fff;
  --text-header: #dcdcdc;
  --text: #212121;
  --text-light: #585858;
  --border: #d8dae1;
  --accent: #244D5D;
  --code: #932227;
  --preformatted: #444;
  --marked: #1B8E39;
  --disabled: #efefef;
}

header {
  padding: 0 0.5rem 0rem 0.5rem;
}

.active {
  color: var(--accent) !important;
  border-color: var(--accent) !important;
}

main {
  padding-top: 1rem;
}

main h3 {
  margin-top: 1rem;
  margin-bottom: 1rem
}

main h4 {
  margin-top: 1rem;
  margin-bottom: 0rem
}

main p {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.vote {
  background: none;
  color: var(--accent);
}

input:disabled {
  cursor: default;
}

button:disabled {
  cursor: default;
}

.content {
  background: var(--accent-bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  align-content: center;
  text-align: center;
  margin: 15px 0 15px 0;
  padding: 15px;
}

section {
  margin-top: 50px !important;
}

.row:after {
  content: "";
  display: table;
  clear: both
}

.column {
  float: left;
}

.column-5 {
  width: 5%;
}

.column-90 {
  width: 90%;
}

.column-95 {
  width: 95%;
}

.image {
  max-width: 100%;
  max-height:300px;
}

.image-preview {
  max-width: 100%;
  max-height:300px;
}