-
Notifications
You must be signed in to change notification settings - Fork 10
/
jsmoo.css
114 lines (97 loc) · 1.97 KB
/
jsmoo.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
.ui-tab-main {
margin-top: 40px;
}
.sidebar-grid-container {
display: grid;
grid-template-columns: 130px 1fr;
grid-gap: 20px;
}
.grid-container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 20px;
}
.disassembly {
border: 1px solid black;
border-radius: 5px;
background-color: #eee;
margin: 10px 0;
padding: 6px;
}
.ui-bar{
width:100%;
overflow:hidden;
}
.ui-bar .ui-bar-item{
padding:8px 16px;
float:left;
width:auto;
border:none;
display:block;
outline:0;
}
.ui-bar .ui-bar-button{
white-space: normal;
}
.ui-bar-black,.ui-bar-hover-black:hover{
color: #fff !important;
background-color: #000 !important;
}
.ui-sidebar-button {
border: none;
display: inline-block;
padding:8px 16px;
vertical-align: middle;
overflow: hidden;
text-decoration: none;
color: inherit;
background-color: inherit;
text-align: center;
cursor: pointer;
white-space: nowrap;
width: 100%;
}
.ui-bar-block .ui-bar-item {
width:100%;
display:block;
padding:8px 16px;
text-align:left;
border:none;
white-space:normal;
float:none;
outline:0;
}
.ui-bar-block.ui-center .ui-bar-item{
text-align:center
} .ui-block{
display:block;
width:100%;
}
.ui-bar-bg,.ui-bar-hover-bg:hover {
color: #fff !important;
background-color: #000 !important;
}
.ui-bar-blue-grey, .ui-bar-hover-blue-grey:hover {
background-color: #606080 !important;
color: #fff !important;
}
.ui-sidebar {
height: 100%;
width: 180px;
background-color: #fff;
/*position: fixed !important;*/
z-index: 1;
overflow: auto;
}
.ui-container:after, .ui-container:before {
content: "";
display: table;
clear: both;
}
.ui-red,.ui-hover-red:hover {
color:#fff !important;
background-color: #f04040 !important
}
.ui-card, .ui-card-2 {
box-shadow:0 2px 5px 0 rgba(0, 0, 0, 0.12), 0 2px 10px 0 rgba(0, 0, 0, 0.08)
}