forked from jonnyboy0719/Cuberite-Portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportal-styles.css
120 lines (99 loc) · 1.52 KB
/
portal-styles.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
115
116
117
118
119
120
* {
box-sizing: border-box;
}
.table {
width: 200px;
padding: 10px;
display: inline-block;
}
.col {
margin-bottom: 5px;
}
.submit-btn {
width: 100%;
padding: 8px;
border: none;
}
.world-field__select {
width: 100%;
}
input {
width: 100%;
padding: 5px;
}
.num-field {
position: relative;
}
.num-field__input {
padding: 5px 5px 5px 22px;
margin-bottom: 5px;
}
.num-field__label {
position: absolute;
top: 7px;
left: 5px;
}
.preview {
width: calc(100% - 210px);
padding: 20px;
display: inline-block;
vertical-align: top;
}
.preview-item {
background-color: white;
padding: 10px;
position: relative;
margin-bottom: 10px;
}
.preview-item__left {
display: inline-block;
vertical-align: top;
width: 125px;
}
.preview-item__left p {
margin: 0;
padding: 0;
}
.preview-item__name {
margin: 5px 0;
}
.preview-item__point-box {
display: inline-block;
margin: 0 10px;
padding: 5px;
}
.preview-item__point-box h3 {
margin: 0 0 5px;
}
.preview-item__point-box ul {
margin: 0;
padding: 0;
list-style: none;
}
.preview-item__right {
display: inline-block;
}
.preview-item__edit {
border: none;
position: absolute;
top: 20px;
right: 20px;
}
.preview-item__del {
border: none;
position: absolute;
top: 50px;
right: 22px;
}
.preview-item__disable {
border: none;
position: absolute;
top: 75px;
right: 22px;
}
.global-disable-form {
padding-left: 10px;
font-weight: bold;
border-bottom: 1px solid lightgray;
padding-bottom: 10px;
}