abandon ghetto css
This commit is contained in:
parent
983c7747cc
commit
a1395da957
@ -1,18 +1,18 @@
|
|||||||
<template>
|
<template>
|
||||||
<div v-if="showLoggerUi" :style="[ghettoCss.rootWindow, ghettoCss.flexColumn]">
|
<div v-if="showLoggerUi">
|
||||||
<div :style="ghettoCss.header">
|
<div>
|
||||||
<div :style="ghettoCss.headerTop">DEFORESTATOR 5000</div>
|
<div>DEFORESTATOR 5000</div>
|
||||||
<div :style="[ghettoCss.headerBottom]">Iron Legion's finest logging tool</div>
|
<div>Iron Legion's finest logging tool</div>
|
||||||
</div>
|
</div>
|
||||||
<div :style="[ghettoCss.flexRow, ghettoCss.flexGrow, ghettoCss.content]">
|
<div>
|
||||||
<div :style="[ghettoCss.flexColumn, ghettoCss.configPanel]">
|
<div>
|
||||||
logger config panel is here
|
logger config panel is here
|
||||||
</div>
|
</div>
|
||||||
<div :style="[ghettoCss.flexColumn, ghettoCss.logPanel]">
|
<div class="test-class">
|
||||||
logger results will go here
|
logger results will go here
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div :style="[ghettoCss.content, ghettoCss.buttonRow]">
|
<div>
|
||||||
button row is here
|
button row is here
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -24,60 +24,7 @@ export default {
|
|||||||
return {
|
return {
|
||||||
showLoggerUi: true,
|
showLoggerUi: true,
|
||||||
ghettoCss: {
|
ghettoCss: {
|
||||||
rootWindow: {
|
|
||||||
position: 'fixed',
|
|
||||||
top: '5vh',
|
|
||||||
left: '5vw',
|
|
||||||
width: '90vw',
|
|
||||||
height: '90vh',
|
|
||||||
zIndex: '999999',
|
|
||||||
backgroundColor: 'rgba(18,17,15,0.9)',
|
|
||||||
color: '#f1f1f1',
|
|
||||||
fontSize: '14px',
|
|
||||||
},
|
|
||||||
header: {
|
|
||||||
width: '100%',
|
|
||||||
color: '#ffffff',
|
|
||||||
backgroundColor: '#811',
|
|
||||||
flexGrow: '0',
|
|
||||||
flexShrink: '0',
|
|
||||||
},
|
|
||||||
headerTop: {
|
|
||||||
width: '100%',
|
|
||||||
fontSize: '42px',
|
|
||||||
paddingLeft: '32px',
|
|
||||||
paddingTop: '8px',
|
|
||||||
},
|
|
||||||
headerBottom: {
|
|
||||||
// width: '100%',
|
|
||||||
fontSize: '18px',
|
|
||||||
paddingLeft: '32px',
|
|
||||||
paddingTop: '8px',
|
|
||||||
paddingBottom: '6px',
|
|
||||||
backgroundColor: '#322',
|
|
||||||
},
|
|
||||||
flexColumn: {
|
|
||||||
display: 'flex',
|
|
||||||
flexDirection: 'column',
|
|
||||||
},
|
|
||||||
flexRow: {
|
|
||||||
display: 'flex',
|
|
||||||
flexDirection: 'row',
|
|
||||||
},
|
|
||||||
flexGrow: {
|
|
||||||
flexGrow: 1,
|
|
||||||
},
|
|
||||||
configPanel: {
|
|
||||||
flexGrow: 1,
|
|
||||||
padddingRight: '8px',
|
|
||||||
},
|
|
||||||
logPanel: {
|
|
||||||
flexGrow: 2,
|
|
||||||
padddingRight: '8px',
|
|
||||||
},
|
|
||||||
content: {
|
|
||||||
padding: '16px',
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -85,6 +32,22 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
// scss no worky
|
@import url('../res/css/colors.scss');
|
||||||
|
@import url('../res/css/font/overpass.css');
|
||||||
|
@import url('../res/css/font/overpass-mono.css');
|
||||||
|
@import url('../res/css/common.scss');
|
||||||
|
@import url('../res/css/flex.css');
|
||||||
|
|
||||||
|
.rootWindow {
|
||||||
|
position: fixed !important;
|
||||||
|
top: 5vh !important;
|
||||||
|
left: 5vw !important;
|
||||||
|
width: 90vw !important;
|
||||||
|
height: 90vh !important;
|
||||||
|
z-index: 999999 !important;
|
||||||
|
background-color: rgba(18,17,15,0.9) !important;
|
||||||
|
color: #f1f1f1 !important;
|
||||||
|
font-size: 14px !important;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user