mirror of
https://github.com/ryannhg/elm-spa.git
synced 2024-11-25 23:43:02 +03:00
32 lines
399 B
CSS
32 lines
399 B
CSS
.fixed--full {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.absolute--full {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.absolute--center {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.bg--overlay {
|
|
background: rgba(0,0,0,0.25);
|
|
}
|
|
.min-width--480 {
|
|
min-width: 320px;
|
|
}
|
|
.bg--white {
|
|
background: white;
|
|
} |