forked from vodkabears/Remodal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separete base and theme styles (Solves vodkabears#124)
- Loading branch information
1 parent
4d75164
commit 2a840f9
Showing
6 changed files
with
243 additions
and
238 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,233 @@ | ||
/* ========================================================================== | ||
Remodal's default mobile first theme | ||
========================================================================== */ | ||
|
||
/* Default theme styles of the overlay */ | ||
|
||
.remodal-overlay { | ||
background: rgba(43, 46, 56, 0.9); | ||
} | ||
|
||
.remodal-overlay.remodal-is-opening, | ||
.remodal-overlay.remodal-is-closing { | ||
animation-fill-mode: forwards; | ||
} | ||
|
||
.remodal-overlay.remodal-is-opening { | ||
animation: remodal-overlay-opening-keyframes 0.2s; | ||
} | ||
|
||
.remodal-overlay.remodal-is-closing { | ||
animation: remodal-overlay-closing-keyframes 0.2s; | ||
} | ||
|
||
/* Default theme styles of the wrapper */ | ||
|
||
.remodal-wrapper { | ||
padding: 10px 10px 0; | ||
} | ||
|
||
/* Default theme styles of the modal dialog */ | ||
|
||
.remodal { | ||
box-sizing: border-box; | ||
width: 100%; | ||
margin-bottom: 10px; | ||
padding: 35px; | ||
|
||
color: #182a3c; | ||
background: #fff; | ||
} | ||
|
||
.remodal.remodal-is-opening, | ||
.remodal.remodal-is-closing { | ||
animation-fill-mode: forwards; | ||
} | ||
|
||
.remodal.remodal-is-opening { | ||
animation: remodal-opening-keyframes 0.2s; | ||
} | ||
|
||
.remodal.remodal-is-closing { | ||
animation: remodal-closing-keyframes 0.2s; | ||
} | ||
|
||
/* Vertical align of the modal dialog */ | ||
|
||
.remodal, | ||
.remodal-wrapper:after { | ||
vertical-align: middle; | ||
} | ||
|
||
/* Close button */ | ||
|
||
.remodal-close { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
|
||
display: block; | ||
overflow: visible; | ||
|
||
width: 35px; | ||
height: 35px; | ||
margin: 0; | ||
padding: 0; | ||
|
||
cursor: pointer; | ||
transition: color 0.2s; | ||
text-decoration: none; | ||
|
||
color: #95979c; | ||
border: 0; | ||
outline: 0; | ||
background: transparent; | ||
} | ||
|
||
.remodal-close:hover { | ||
color: #2b2e38; | ||
} | ||
|
||
.remodal-close:before { | ||
font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important; | ||
font-size: 25px; | ||
line-height: 35px; | ||
|
||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
|
||
display: block; | ||
|
||
width: 35px; | ||
|
||
content: "\00d7"; | ||
text-align: center; | ||
} | ||
|
||
/* Dialog buttons */ | ||
|
||
.remodal-confirm, | ||
.remodal-cancel { | ||
font: inherit; | ||
|
||
display: inline-block; | ||
overflow: visible; | ||
|
||
min-width: 110px; | ||
margin: 0; | ||
padding: 12px 0; | ||
|
||
cursor: pointer; | ||
transition: background 0.2s; | ||
text-align: center; | ||
vertical-align: middle; | ||
text-decoration: none; | ||
|
||
border: 0; | ||
outline: 0; | ||
} | ||
|
||
.remodal-confirm { | ||
color: #fff; | ||
background: #81c784; | ||
} | ||
|
||
.remodal-confirm:hover { | ||
background: #66bb6a; | ||
} | ||
|
||
.remodal-cancel { | ||
color: #fff; | ||
background: #e57373; | ||
} | ||
|
||
.remodal-cancel:hover { | ||
background: #ef5350; | ||
} | ||
|
||
/* Remove inner padding and border in Firefox 4+ for the button tag. */ | ||
|
||
.remodal-confirm::-moz-focus-inner, | ||
.remodal-cancel::-moz-focus-inner { | ||
padding: 0; | ||
|
||
border: 0; | ||
} | ||
|
||
/* Keyframes | ||
========================================================================== */ | ||
|
||
@keyframes remodal-opening-keyframes { | ||
from { | ||
transform: scale(1.05); | ||
|
||
opacity: 0; | ||
} | ||
to { | ||
transform: none; | ||
|
||
opacity: 1; | ||
} | ||
} | ||
|
||
@keyframes remodal-closing-keyframes { | ||
from { | ||
transform: scale(1); | ||
|
||
opacity: 1; | ||
} | ||
to { | ||
transform: scale(0.95); | ||
|
||
opacity: 0; | ||
} | ||
} | ||
|
||
@keyframes remodal-overlay-opening-keyframes { | ||
from { | ||
opacity: 0; | ||
} | ||
to { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
@keyframes remodal-overlay-closing-keyframes { | ||
from { | ||
opacity: 1; | ||
} | ||
to { | ||
opacity: 0; | ||
} | ||
} | ||
|
||
/* Media queries | ||
========================================================================== */ | ||
|
||
@media only screen and (min-width: 641px) { | ||
.remodal { | ||
max-width: 700px; | ||
min-height: 0; | ||
} | ||
|
||
/* Background for effects */ | ||
|
||
.remodal-bg.remodal-is-opening, | ||
.remodal-bg.remodal-is-opened { | ||
filter: blur(3px); | ||
} | ||
} | ||
|
||
/* IE8 | ||
========================================================================== */ | ||
|
||
.lt-ie9 .remodal-overlay { | ||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e62b2e38, endColorstr=#e62b2e38); | ||
} | ||
|
||
.lt-ie9 .remodal { | ||
width: 700px; | ||
min-height: 0; | ||
margin: 20px auto; | ||
} |
Oops, something went wrong.