diff options
Diffstat (limited to 'frontend/src/css/ModMenu.css')
| -rw-r--r-- | frontend/src/css/ModMenu.css | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/frontend/src/css/ModMenu.css b/frontend/src/css/ModMenu.css new file mode 100644 index 0000000..c6d3d8d --- /dev/null +++ b/frontend/src/css/ModMenu.css | |||
| @@ -0,0 +1,112 @@ | |||
| 1 | div#modview{ | ||
| 2 | position: absolute; | ||
| 3 | left: 50%; | ||
| 4 | z-index: 20; | ||
| 5 | width: 320px; height: auto; | ||
| 6 | /* background-color: red; */ | ||
| 7 | |||
| 8 | transform: translateY(-68%); | ||
| 9 | } | ||
| 10 | div#modview>div>button{ | ||
| 11 | height: 30px; | ||
| 12 | } | ||
| 13 | |||
| 14 | div#modview>div:nth-child(1){ | ||
| 15 | display: grid; | ||
| 16 | grid-template-columns: 50% 50%; | ||
| 17 | } | ||
| 18 | |||
| 19 | div#modview>div:nth-child(2){ | ||
| 20 | display: grid; | ||
| 21 | place-items: center; | ||
| 22 | } | ||
| 23 | |||
| 24 | #modview-menu{ | ||
| 25 | position: absolute; | ||
| 26 | left: calc(50% + 160px); top: 130px; | ||
| 27 | transform: translateX(-50%); | ||
| 28 | background-color: #2b2e46; | ||
| 29 | z-index: 2; color: white; | ||
| 30 | } | ||
| 31 | |||
| 32 | #modview-menu-image{ | ||
| 33 | box-shadow: 0 0 40px 16px black; | ||
| 34 | outline: 8px solid #2b2e46; | ||
| 35 | border-radius: 20px; | ||
| 36 | font-size: 40px; | ||
| 37 | display: grid; | ||
| 38 | grid-template-columns: 50% 50%; | ||
| 39 | /* place-items: center; */ | ||
| 40 | |||
| 41 | } | ||
| 42 | #modview-menu-image>div:nth-child(1){ | ||
| 43 | height: 400px; width: 500px; | ||
| 44 | display: grid; | ||
| 45 | grid-template-rows: 30% 70%; | ||
| 46 | } | ||
| 47 | #modview-menu-image>div:nth-child(2){ | ||
| 48 | height: 400px; width: 500px; | ||
| 49 | display: grid; | ||
| 50 | grid-template-rows: 20% 10%; | ||
| 51 | } | ||
| 52 | |||
| 53 | #modview-menu-image>div>button{width: 300px;margin-left:100px;} | ||
| 54 | #modview-menu-image>div>img{width: 500px;} | ||
| 55 | #modview-menu-image>div>button{font-size: 20px;} | ||
| 56 | #modview-menu-image>div>span>input[type="file"]{font-size: 15px;} | ||
| 57 | |||
| 58 | |||
| 59 | #modview-menu-add, | ||
| 60 | #modview-menu-edit{ | ||
| 61 | box-shadow: 0 0 40px 16px black; | ||
| 62 | outline: 8px solid #2b2e46; | ||
| 63 | border-radius: 20px; | ||
| 64 | font-size: 40px; | ||
| 65 | display: grid; | ||
| 66 | grid-template-columns: 20% 20% 20% 20% 20%; | ||
| 67 | } | ||
| 68 | |||
| 69 | #modview-menu-add>div, | ||
| 70 | #modview-menu-edit>div{ | ||
| 71 | display: grid; | ||
| 72 | margin: 20px; | ||
| 73 | width: 200px; | ||
| 74 | font-size: 20px; | ||
| 75 | } | ||
| 76 | #modview-route-description>textarea{ | ||
| 77 | resize: none; | ||
| 78 | height: 160px; | ||
| 79 | width: 1160px; | ||
| 80 | } | ||
| 81 | #modview-route-showcase>input::placeholder{opacity: .5;} | ||
| 82 | #modview_block{ | ||
| 83 | position: absolute; | ||
| 84 | background-color: black; | ||
| 85 | opacity: .3; | ||
| 86 | left: 320px; | ||
| 87 | width: calc(100% - 320px); | ||
| 88 | height: 100%; | ||
| 89 | z-index: 2; | ||
| 90 | cursor: no-drop; | ||
| 91 | } | ||
| 92 | #modview-md{ | ||
| 93 | box-shadow: 0 0 40px 16px black; | ||
| 94 | background-color: #2b2e46; | ||
| 95 | outline: 8px solid #2b2e46; | ||
| 96 | |||
| 97 | border-radius: 20px; | ||
| 98 | position: absolute; | ||
| 99 | padding: 10px; top: 400px; | ||
| 100 | width: 1180px; height: 300px; | ||
| 101 | overflow-y: auto; | ||
| 102 | word-wrap: break-word; | ||
| 103 | } | ||
| 104 | #modview-md>span>a{ | ||
| 105 | padding-left: 20px; | ||
| 106 | color:aqua; | ||
| 107 | } | ||
| 108 | #modview-md>p{ | ||
| 109 | font-family: BarlowSemiCondensed-Regular; | ||
| 110 | color: #cdcfdf; | ||
| 111 | font-size: 21px; | ||
| 112 | } \ No newline at end of file | ||