-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.scss
81 lines (71 loc) · 1020 Bytes
/
main.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
78
79
80
81
body
{
font-family: Open Sans;
}
div
{
box-sizing: border-box;
}
.container
{
padding: 30px 40px 30px 40px;
&.gray
{
background-color: #F5F5F5;
}
}
.btn
{
border-radius: 2px;
height: 30px;
border: 1px solid transparent;
padding: 0 10px;
display: inline-block;
white-space: nowrap;
color: #fff;
&.btn-blue
{
background-color: #6699ff;
}
&.inline
{
margin-right: 15px;
}
}
#main
{
width: 500px;
min-width: 500px;
height: 320px;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
resize: horizontal;
overflow: auto;
border: 1px solid #eaeaea;
.title
{
height: 20px;
line-height: 20px;
margin-bottom: 40px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.buttons
{
padding-top: 30px;
padding-left: 40px;
}
}
@media (max-width: 500px)
{
#main
{
width: 100%;
min-width: 100%;
}
}