Bones/css/skeleton.ontraport.css

82 lines
2.2 KiB
CSS
Raw Normal View History

2015-04-27 17:33:21 -04:00
/* ====================================================================================================================
@brief ONTRAPORT's skeleton extension file
===================================================================================================================== */
/* =====================================================================================================================
blocks
===================================================================================================================== */
.block-wrapper {
2015-04-27 17:33:21 -04:00
padding-top: 3em;
padding-bottom: 3em;
2015-04-27 23:28:39 -04:00
width: 100%;
2015-04-27 17:33:21 -04:00
}
/* =====================================================================================================================
buttons
===================================================================================================================== */
.button {
height: auto;
max-width: 100%;
padding: 5px 20px;
white-space: normal;
}
2015-04-27 17:33:21 -04:00
/* =====================================================================================================================
Images
===================================================================================================================== */
.opt-circle {
/* Safari 3-4, iOS 1-3.2, Android 1.6- */
-webkit-border-radius: 500px;
/* Firefox 1-3.6 */
-moz-border-radius: 500px;
/* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
border-radius: 500px;
}
/* =====================================================================================================================
Fonts
===================================================================================================================== */
.opt-center {
text-align: center;
}
.opt-bold {
font-weight: bold;
}
2015-04-27 23:28:39 -04:00
.opt-big {
font-size: 1.2em;
}
.opt-medium {
font-size: 1em;
}
2015-04-27 17:33:21 -04:00
.opt-small {
2015-04-27 23:28:39 -04:00
font-size: .8em;
2015-04-27 17:33:21 -04:00
}
2015-04-27 23:28:39 -04:00
.opt-red {
color: red;
}
/**
* Adding CSS rules for WYSIWYG HTML 5 Support
* https://github.com/xing/wysihtml5/wiki/Supported-Commands
*/
.wysiwyg-text-align-center {
text-align: center;
}
.wysiwyg-text-align-left {
text-align: left;
}
.wysiwyg-text-align-right {
text-align: right;
}