-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (80 loc) · 1.36 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
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
body,html {
padding: 0%;
margin: 0%;
min-width:100vw;
min-height:100vh;
display: flex;
display: -webkit-flex;
flex-wrap: nowrap;
flex-direction: column;
justify-content: stretch;
align-items: stretch;
align-content: center;
}
header >* {
display: inline
}
footer {
text-align: center;
padding: 5px;
}
#page {
flex:1;
overflow-y: scroll;
overflow-x: hidden;
}
.tp-item {
display: flex;
display: -webkit-flex;
justify-content: stretch;
align-items:space-between;
}
.tp-item > .tp-link {
flex: 1;
}
.tp-item.active .tp-link {
z-index: 2;
color: #fff;
background-color: #007bff;
border-color: #007bff;
}
.tp-item .btn {
display: flex;
justify-content: center;
align-items: center;
transform: translateX(100vw);
transition: transform .5s;
}
.tp-item .btn.edit {
transform: translateX(0px);
}
.alert {
position: absolute;
width: 100%;
display: none;
}
.middle-center {
height:100%;
width:100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.dropzone,.dropzone-content {
box-sizing: border-box;
display: none;
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
border: 11px dashed #60a7dc;
}
.dropzone {
z-index: 100;
}
.dropzone-content {
background: rgba(96,167,220,.8);
z-index: 99;
}