-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (64 loc) · 1 KB
/
style.css
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
.main-content {
padding-top: 1rem;
padding-left: 2rem;
padding-right: 2rem;
background: #cbcbcb;
}
.display-content {
max-width: 700px;
height: 300px;
margin: 0 auto;
overflow: auto;
top: 2px;
}
.pull-right {
float: right;
}
.pull-left {
float: left;
}
.code-content {
margin-top: 10px;
}
.clearfix {
clear: both;
}
.code-slot {
margin-left: 1rem;
margin-right: 1rem;
}
.code-slot-field {
height: 200px;
overflow: auto;
}
.row-no-padding > [class*="col-"] {
padding-left: 0 !important;
padding-right: 0 !important;
}
.display-block {
display: block !important;
}
.history-select {
min-width: 100px;
}
.normal {
transform: scale(1);
transition-property: all;
transition-duration: 3s;
}
.minimize {
margin: 0 auto;
transform: scale(0.4);
transition-property: all;
transition-duration: 3s;
}
.maximize {
margin: 0 auto;
transform: scale(1.5);
transition-property: all;
transition-duration: 3s;
}
.code-area-transform {
transform: scale(1.01);
z-index: 1000;
}