blob: df3d69f217ba84ac7e0e4a0768cb1d3331b9a812 (
plain) (
blame)
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
* {
font-family: sans-serif;
}
html {
width: 100%;
overflow-x: hidden;
overflow-y: auto;
}
body {
margin: 0;
padding: 0;
}
iframe {
border: none;
border-radius: 8px;
min-width: 200px;
width: 100%;
height: 100%;
pointer-events: none;
}
aside {
width: 33vw;
margin: 0 .5em .5em 0;
height: calc(33vw * 0.5625);
}
.logo {
font-size: 150%;
height: 100%;
font-weight: bold;
display: flex;
flex-direction: row;
align-items: center;
margin-right: 0.5em;
.icon {
height: 100%;
padding: 0 18px 0 32px;
background: white;
display: flex;
align-items: center;
margin-right: 0.5em;
}
}
main {
padding: 0 1em;
display: flex;
align-items: flex-start;
}
.spacer {
flex: 1;
}
header {
width: 100%;
height: 3.2em;
background-color: #F1680D;
color: white;
//background-image: url(../../assets/images/backdrop/network-o.png);
display: flex;
flex-direction: row;
align-items: center;
margin-bottom: 1em;
box-shadow: 1px 0px 10px rgba(0,0,0,0.6);
background-size: 50%;
background-position: top left;
padding-right: 1em;
h1 {
margin: 0;
padding: 0 1em 0 0;
font-size: inherit;
font-weight: 100;
position: relative;
top: 2px;
}
}
#options {
display: flex;
flex-wrap: wrap;
& > * {
flex-grow: 0;
}
}
fieldset {
border: none;
min-width: 8em;
legend {
border-bottom: 1px solid #ccc;
width: 100%;
}
}
button {
background: #F1680D;
color: white;
font-weight: bold;
border-radius: 5px;
margin: 0;
padding: 1em 1.25em;
border: none;
}
a {
text-decoration: none;
&:hover {
text-decoration: underline;
}
&, &:hover, &:focus, &:visited, &:active {
color: #F44336;
}
}
@media (max-width: 900px) {
aside {
width: 50vw;
height: calc(50vw * 0.5625);
}
}
@media (max-width: 600px) {
main {
flex-direction: column;
}
aside {
width: calc(100vw - 2em);
height: calc(56.25vw - 2em * 0.5625);
}
}
@media (min-width: 1800px) {
aside {
width: 50vw;
height: calc(50vw * 0.5625);
}
}
|