blob: c6d3d8d867a052783d6ab7bfc71a1721ff85622b (
plain) (
blame)
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
|
div#modview{
position: absolute;
left: 50%;
z-index: 20;
width: 320px; height: auto;
/* background-color: red; */
transform: translateY(-68%);
}
div#modview>div>button{
height: 30px;
}
div#modview>div:nth-child(1){
display: grid;
grid-template-columns: 50% 50%;
}
div#modview>div:nth-child(2){
display: grid;
place-items: center;
}
#modview-menu{
position: absolute;
left: calc(50% + 160px); top: 130px;
transform: translateX(-50%);
background-color: #2b2e46;
z-index: 2; color: white;
}
#modview-menu-image{
box-shadow: 0 0 40px 16px black;
outline: 8px solid #2b2e46;
border-radius: 20px;
font-size: 40px;
display: grid;
grid-template-columns: 50% 50%;
/* place-items: center; */
}
#modview-menu-image>div:nth-child(1){
height: 400px; width: 500px;
display: grid;
grid-template-rows: 30% 70%;
}
#modview-menu-image>div:nth-child(2){
height: 400px; width: 500px;
display: grid;
grid-template-rows: 20% 10%;
}
#modview-menu-image>div>button{width: 300px;margin-left:100px;}
#modview-menu-image>div>img{width: 500px;}
#modview-menu-image>div>button{font-size: 20px;}
#modview-menu-image>div>span>input[type="file"]{font-size: 15px;}
#modview-menu-add,
#modview-menu-edit{
box-shadow: 0 0 40px 16px black;
outline: 8px solid #2b2e46;
border-radius: 20px;
font-size: 40px;
display: grid;
grid-template-columns: 20% 20% 20% 20% 20%;
}
#modview-menu-add>div,
#modview-menu-edit>div{
display: grid;
margin: 20px;
width: 200px;
font-size: 20px;
}
#modview-route-description>textarea{
resize: none;
height: 160px;
width: 1160px;
}
#modview-route-showcase>input::placeholder{opacity: .5;}
#modview_block{
position: absolute;
background-color: black;
opacity: .3;
left: 320px;
width: calc(100% - 320px);
height: 100%;
z-index: 2;
cursor: no-drop;
}
#modview-md{
box-shadow: 0 0 40px 16px black;
background-color: #2b2e46;
outline: 8px solid #2b2e46;
border-radius: 20px;
position: absolute;
padding: 10px; top: 400px;
width: 1180px; height: 300px;
overflow-y: auto;
word-wrap: break-word;
}
#modview-md>span>a{
padding-left: 20px;
color:aqua;
}
#modview-md>p{
font-family: BarlowSemiCondensed-Regular;
color: #cdcfdf;
font-size: 21px;
}
|