62 lines
1.2 KiB
SCSS
Raw Normal View History

/*
Only layout styles - position, display, max-width...
*/
body{
padding: 0;
margin: 0;
#main_holder{
display: flex;
flex-direction: column;
2021-11-19 08:52:49 +01:00
&.package_1ka {
}
//prenese se stran in podstran, first/second/third navigation
//class="page_'.$_GET['a'].' subpage_'.$_GET['m'].' '.($this->survey_type == '1' ? 'forma' : '').' '.($this->survey_type == '0' ? 'glasovanje' : '').' menu_left wide">'
header{
}
#main{
padding: 64px 0;
.fullwidth{
max-width: 100%;
}
.narrow{
margin: 0 auto;
max-width: 1060px;
}
.wide{
margin: 0 auto;
max-width: 1360px;
}
.menu_left{
display: flex;
flex-direction: row;
justify-content: center;
2021-11-19 08:52:49 +01:00
.layout_left_item{
box-sizing: border-box;
width: 300px;
}
2021-11-19 08:52:49 +01:00
.layout_right_item{
flex-grow: 1;
}
}
}
footer{
}
}
}