forked from matquetyt/MatQue
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (94 loc) · 1.72 KB
/
Copy pathstyle.css
File metadata and controls
94 lines (94 loc) · 1.72 KB
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
html, *{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.btn:focus{
box-shadow: none;
outline: none;
}
label{
cursor: pointer;
}
[ng\:cloak],[ng-cloak],[data-ng-cloak],[x-ng-cloak],.ng-cloak,.x-ng-cloak{
display: none !important;
}
.wrapper{
width: 100%;
height: 100vh;
position: relative;
display: flex;
}
.leftBar{
width: 300px;
max-height: 100%;
overflow-y: auto;
}
.rightBar{
width: 300px;
max-height: 100%;
overflow-x: hidden;
overflow-y: auto;
}
.content{
width: calc(100% - 600px);
max-height: 100%;
overflow-y: auto;
}
.bg-secondary{
background-color: rgb(143, 143, 143);
}
.custom-nav-item{
user-select: none;
display: flex;
flex-direction: row;
align-items: center;
padding: 0 .5rem;
}
.custom-nav-item:hover,
.custom-nav-item.active{
background-color: rgb(224, 224, 224);
cursor: pointer;
border-radius: .50rem;
}
.custom-nav-item:hover .nav-link{
color: rgb(53, 53, 53);
}
.nav-link{
color: white;
}
.pointer-move{
cursor: move;
user-select: none;
}
.droggable{
user-select: none;
border: 2px dotted #535353;
font-size: 1.5rem;
}
.droggable.over{
transition: all .4s;
background-color: #535353;
color: #ccc;
}
.exponentialItem{
width: 100px;
height: 70px;
margin: 10px 16px;
position: relative;
}
.exponentialItem input[type=text]{
position: absolute;
}
.exponentialItem input[type=text]:first-child{
width: 50px;
height: 50px;
bottom: 0;
left: 0;
}
.exponentialItem input[type=text]:last-child{
width: 35px;
height: 35px;
top: 0;
right: 0;
}