-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.less
More file actions
73 lines (60 loc) · 983 Bytes
/
index.less
File metadata and controls
73 lines (60 loc) · 983 Bytes
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
@import './src/js/ui/variables.less';
@import './src/js/ui/StoryPanel/styles.less';
body {
margin: 0;
background: #594A42;
}
* {
box-sizing: border-box;
}
.chrome {
background: white;
max-width: @app-width;
border: solid 1px #aaa;
margin: auto;
}
.chrome__header__home {
float: none;
width: 100%;
}
.chrome__header__home a {
display: block;
text-align: center;
}
.panel,
.app__content {
padding: 3px;
}
.chrome__content {
max-width: 500px;
margin: auto;
}
.panel,
.chrome__content {
min-height: 80vh;
font-family: courier;
}
.chrome__header__home__logo {
vertical-align: middle;
width: auto;
margin: 12px 0 10px;
height: 50px;
}
.chrome__boot-screen {
clear: both;
text-align: left;
}
.chrome__boot-screen__msg {
margin: 10px 0;
font-weight: bold;
font-size: 2em;
}
.chrome__boot-screen__source-link {
font-size: 0.8em;
display: block;
}
@media all and ( min-width: 500px ) {
.chrome {
min-height: 500px;
}
}