You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
587 B
49 lines
587 B
8 years ago
|
body{
|
||
|
font-family: 'Roboto';
|
||
|
}
|
||
|
|
||
|
.container{
|
||
|
width: 100%;
|
||
|
max-width: 1280px;
|
||
|
padding: 0 20px;
|
||
|
}
|
||
|
|
||
|
.border{
|
||
|
border: 1px solid red;
|
||
|
}
|
||
|
|
||
|
|
||
|
.middle{
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
transform: translateY(-50%);
|
||
|
}
|
||
|
|
||
|
.middle-right{
|
||
|
position: absolute;
|
||
|
right: 0;
|
||
|
top: 50%;
|
||
|
transform: translateY(-50%);
|
||
|
}
|
||
|
|
||
|
.full-middle{
|
||
|
position: absolute;
|
||
|
left: 50%;
|
||
|
top: 50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
.bg-alpha{
|
||
|
background: rgba(255,255,255,0.5);
|
||
|
}
|
||
|
|
||
|
.radius{
|
||
|
border-radius: 3px;
|
||
|
}
|
||
|
|
||
|
.radius-bottom{
|
||
|
border-radius: 0 0 3px 3px;
|
||
|
}
|