mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-04 11:35:06 +03:00
63 lines
1012 B
CSS
63 lines
1012 B
CSS
.screen {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-content: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.viewport {
|
|
height: 200px;
|
|
width: 200px;
|
|
}
|
|
|
|
.logo {
|
|
width: 500px;
|
|
height: 50%;
|
|
margin: 0px 0px 0px 0px;
|
|
justify-content: center;
|
|
align-content: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.panel {
|
|
display: flex;
|
|
height: 33%;
|
|
width: 33%;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
align-content: flex-start;
|
|
}
|
|
|
|
.panel-top {
|
|
width: 100%;
|
|
height: 75%;
|
|
justify-content: flex-start;
|
|
flex-direction:column;
|
|
}
|
|
|
|
.panel-bottom {
|
|
width: 100%;
|
|
height: 25%;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
align-content: flex-end;
|
|
}
|
|
|
|
.rect {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
align-content: center;
|
|
background-color: 18 18 18 255;
|
|
}
|
|
|
|
.rect:hover {
|
|
background-color: 40 40 40 255;
|
|
}
|
|
|
|
.normal-text {
|
|
font-size: 2.0;
|
|
}
|