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.
102 lines
1.5 KiB
102 lines
1.5 KiB
/*
|
|
* # Semantic - Site
|
|
* http://github.com/semantic-org/semantic-ui/
|
|
*
|
|
*
|
|
* Copyright 2014 Contributor
|
|
* Released under the MIT license
|
|
* http://opensource.org/licenses/MIT
|
|
*
|
|
*/
|
|
|
|
|
|
/*******************************
|
|
Theme
|
|
*******************************/
|
|
|
|
@type : 'global';
|
|
@element : 'site';
|
|
|
|
@import '../../semantic.config';
|
|
|
|
/*******************************
|
|
Page
|
|
*******************************/
|
|
|
|
/* UI requires Border-Box */
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
font-size: @fontSize;
|
|
height: 100%;
|
|
}
|
|
|
|
|
|
body {
|
|
background: @bodyBackground;
|
|
font-family: @pageFont;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
color: @textColor;
|
|
min-width: 320px;
|
|
}
|
|
|
|
/*******************************
|
|
Text
|
|
*******************************/
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5 {
|
|
margin: @headerMargin;
|
|
padding: 0em;
|
|
}
|
|
|
|
p {
|
|
margin: @paragraphMargin;
|
|
}
|
|
p:first-child {
|
|
margin-top: 0em;
|
|
}
|
|
p:last-child {
|
|
margin-bottom: 0em;
|
|
}
|
|
|
|
/*-------------------
|
|
Links
|
|
--------------------*/
|
|
|
|
a {
|
|
color: @linkColor;
|
|
text-decoration: @linkUnderline;
|
|
}
|
|
a:hover {
|
|
color: @linkHoverColor;
|
|
}
|
|
|
|
|
|
/*******************************
|
|
Highlighting
|
|
*******************************/
|
|
|
|
::-webkit-selection {
|
|
background-color: @highlightBackground;
|
|
color: @highlightColor;
|
|
}
|
|
::-moz-selection {
|
|
background-color: @highlightBackground;
|
|
color: @highlightColor;
|
|
}
|
|
::selection {
|
|
background-color: @highlightBackground;
|
|
color: @highlightColor;
|
|
}
|
|
|
|
.loadUIOverrides();
|