feat: add ui examples
This commit is contained in:
parent
26f5539f3f
commit
3a867c169a
10 changed files with 660 additions and 0 deletions
121
source/style/modules/ui/_new_module.scss
Executable file
121
source/style/modules/ui/_new_module.scss
Executable file
|
|
@ -0,0 +1,121 @@
|
|||
$module_top_height: 32px;
|
||||
|
||||
.body_new {
|
||||
height: 100vh;
|
||||
padding: $module_top_height + $space_basic $space_basic $space_basic;
|
||||
}
|
||||
|
||||
.body_drag {
|
||||
height: 100vh;
|
||||
// padding: $space_basic;
|
||||
}
|
||||
|
||||
.container {
|
||||
display: grid;
|
||||
height: 100%;
|
||||
// margin: $space_basic;
|
||||
// grid-template-columns: repeat(3, 1fr);
|
||||
grid-template-rows: auto 1fr;
|
||||
gap: $space_basic;
|
||||
}
|
||||
|
||||
.area {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
transition: $transition_best;
|
||||
|
||||
&:hover {
|
||||
background-color: #999;
|
||||
}
|
||||
}
|
||||
|
||||
.menu, #top {
|
||||
nav ul {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
// grid-template-rows: repeat(2, 1fr);
|
||||
// grid-template-columns: repeat(2, 1fr);
|
||||
grid-template-areas: "a a";
|
||||
grid-auto-rows: 1fr;
|
||||
grid-auto-columns: 1fr;
|
||||
}
|
||||
|
||||
.item {
|
||||
// height: unset;
|
||||
border-color: darken($color_back_basic, $color_diff_tiny);
|
||||
border-style: dotted;
|
||||
border-width: $width_border_8;
|
||||
border-radius: $width_border_8;
|
||||
padding: $space_basic;
|
||||
background-color: rgb($color_back_basic, .5);
|
||||
// background-color: lighten($color_back_basic, $color_diff_tiny);
|
||||
// background-color: gold;
|
||||
}
|
||||
|
||||
.float {
|
||||
min-height: 50%;
|
||||
}
|
||||
|
||||
#top {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: $module_top_height;
|
||||
background-color: rgb(0, 0, 0, .8);
|
||||
z-index: $z_top;
|
||||
|
||||
div:last-child {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
p,
|
||||
li {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
h1 a {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
p,
|
||||
li {
|
||||
margin-top: 8px;
|
||||
margin-bottom: 7px;
|
||||
padding: 0 4px;
|
||||
font-size: 12px;
|
||||
line-height: 17px;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
display: flex;
|
||||
margin-left: 16px;
|
||||
}
|
||||
|
||||
.brand {
|
||||
height: 36px;
|
||||
background-color: #fff;
|
||||
margin: 0 0 0 128px;
|
||||
padding: 7px 24px;
|
||||
font-size: 16px;
|
||||
line-height: 22px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.state {
|
||||
margin-right: 16px;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
|
||||
#space {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
background-color: $color-dark;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue