-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
77 lines (70 loc) · 1.32 KB
/
style.scss
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
@import 'color';
@import 'dimensions';
*{
box-sizing:border-box;
}
input[type=text]
{
width:$dimen-width-input;
height:$dimen-height-input;
font-size:$dimen-font-size;
}
button{
background-color: $color-red;
color: $color-red;
}
ul{
margin-left:$dimen-margin;
margin-right:$dimen-margin;
}
ul li{
cursor: pointer;
background-color: $color-white;
list-style-type: none;
text-align:$dimen-text-align;
}
ul li:nth-child(odd){
background-color:$color-black;
}
.uk-button{
background-color:$color-white;
color: $color-black;
}
.uk-button:hover{
background-color: $color-white;
}
ul li.checkbox{
text-decoration: line-through;
}
.close {
position: absolute;
color: $color-red;
align:$dimen-align;
right:$dimen-zero-dis;
direction: ltr;
}
.close:hover {
background-color: $color-red;
color: $color-white;
}
.split {
height:$dimen-height-split;
width:$dimen-width-split;
position: fixed;
z-index:$dimen-index;
top:$dimen-zero-dis;
overflow-x: hidden;
}
.left {
left:$dimen-zero-dis;
background-color:$color-black;
}
.right {
right:$dimen-zero-dis;
background-color:$color-red;
}
.title2{
color: $color-white;
font-size:$dimen-font-size;
margin-top:$dimen-margin;
}