mirror of
https://github.com/zedeus/nitter.git
synced 2025-01-07 07:55:38 +00:00
38 lines
665 B
SCSS
38 lines
665 B
SCSS
|
@import '_variables';
|
||
|
@import '_mixins';
|
||
|
|
||
|
.panel-container {
|
||
|
margin: auto;
|
||
|
font-size: 130%;
|
||
|
}
|
||
|
|
||
|
.error-panel {
|
||
|
@include center-panel($error_red);
|
||
|
}
|
||
|
|
||
|
.search-panel > form {
|
||
|
@include center-panel($darkest-grey);
|
||
|
|
||
|
button {
|
||
|
background: #303030;
|
||
|
color: $fg_color;
|
||
|
border: 0;
|
||
|
border-radius: 3px;
|
||
|
cursor: pointer;
|
||
|
font-weight: bold;
|
||
|
width: 30px;
|
||
|
height: 30px;
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
font-size: 16px;
|
||
|
width: 100%;
|
||
|
background: $bg_elements;
|
||
|
color: $fg_color;
|
||
|
border: 0;
|
||
|
border-radius: 4px;
|
||
|
padding: 4px;
|
||
|
margin-right: 8px;
|
||
|
}
|
||
|
}
|