0f94839d
함상기
babylon client fo...
|
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
|
* {
box-sizing: border-box;
}
html {
height: 100%;
font-size: $fontSize;
}
body {
font-family: $fontFamily;
font-size: $fontSize;
font-weight: 400;
color: $textColor;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
padding: 0;
margin: 0;
min-height: 100%;
background-color: $bodyBgColor;
}
a {
text-decoration: none;
color: $primaryColor;
transition: color $transitionDuration;
}
.layout-wrapper {
.route-bar {
min-height: 32px;
background-color: $breadcrumbBgColor;
border-bottom: $breadcrumbBorder;
.route-bar-breadcrumb {
padding: 6px 25px;
display: inline-block;
ul {
margin: 0;
padding: 0;
list-style: none;
color: $textSecondaryColor;
display: inline-block;
li {
margin-right: .25em;
list-style-type: none;
display: inline-block;
color: $textSecondaryColor;
text-transform: capitalize;
button {
color: $textSecondaryColor;
}
}
}
}
}
}
.layout-mask {
display: none;
background-color: #252529;
position: fixed;
top: 0;
left: 0;
z-index: 998;
width: 100%;
height: 100%;
@include opacity(.8);
}
|