116 lines
1.6 KiB
SCSS
Raw Normal View History

/* OSNOVNA STRUKTURA STRANI */
body{
margin: 0;
padding: 0;
font-family: $font;
color: $color_text;
#content{
display: flex;
flex-direction: column;
justify-content: space-between;
}
}
h1{
margin: 20px 0 30px 0;
font-weight: 600;
font-size: 32px;
}
h2{
margin: 20px 0 30px 0;
font-weight: 600;
font-size: 26px;
}
h3{
}
p{
font-size: 16px;
line-height: 160%;
}
a{
color: $color_blue;
text-decoration: none;
&:hover{
color: lighten($color_blue, 10%);
}
}
.red{
color: red;
}
.spaceLeft{
margin-left: 20px;
}
input[type="submit"],
button,
input[type="button"],
.button{
cursor: pointer;
width: 180px;
padding: 16px;
margin-right: 20px;
font-size: 16px;
line-height: 17px;
text-align: center;
text-transform: uppercase;
color: white;
background-color: $color_blue;
border: 0;
outline: 0;
transition: 0.2s;
&:hover{
background-color: lighten($color_blue, 10%);
}
}
input[type="text"],
input[type="password"],
input[type="email"]{
box-sizing: border-box;
padding: 7px 10px;
font-size: 17px;
color: $color_text_dark;
background-color: white;
border: 1px solid $color_border;
&.red{
border-color: red;
}
}
textarea{
box-sizing: border-box;
padding: 8px 12px;
font-size: 15px;
color: $color_text_dark;
background-color: white;
border: 1px solid $color_border;
}
label,
input[type="radio"],
input[type="checkbox"]{
cursor: pointer
}