homepage/_sass/screen.scss

138 lines
4.4 KiB
SCSS
Raw Normal View History

2014-01-27 21:52:30 +01:00
/* Welcome to Compass.
* In this file you should write your main styles. (or centralize your imports)
* Import this file using the following HTML or equivalent:
* <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
$bg: #eee;
$text: #444;
$strong: #111;
$dim: #999;
$links: #55f;
$rule: #999;
2014-02-14 12:02:40 +01:00
$tr-rule: #ccc;
2014-04-10 09:57:08 +02:00
$highlight: #ccc;
2014-01-27 21:52:30 +01:00
$width: 800px;
2014-01-28 21:21:05 +01:00
$margin: 17px;
$in_width: $width - $margin;
2014-01-28 17:21:55 +01:00
$small-width: 500px;
2014-01-27 21:52:30 +01:00
@import "compass/reset";
@import "compass/css3";
@include font-face("OpenSans", font-files("OpenSans.woff"));
@include font-face("OpenSansLight", font-files("OpenSans-Light.woff"));
2014-01-28 17:13:59 +01:00
@include font-face("OpenSans", font-files("OpenSans-Italic.woff"), $style:italic);
2014-01-27 21:52:30 +01:00
html, body { height: 100%; text-align: justify;
background-color: $bg; color: $text;
font-family: "OpenSans", sans;
line-height: 1.4em; }
a { text-decoration: none; color: $links; }
a:hover { text-decoration: underline; }
2014-04-10 09:57:08 +02:00
strong { font-weight: bold; }
2014-01-27 21:52:30 +01:00
hr { height: 1px; border: none; background-color: $rule; margin-top: 1em; }
2014-01-28 21:21:05 +01:00
section h1 { font-size: 150%; border-left: 4px solid $links;
padding-left: 11px; margin-left: -$margin; }
2014-01-27 21:52:30 +01:00
section h2 { font-size: 120%; font-weight: bold; }
2014-05-12 15:21:35 +02:00
section h3 { font-size: 100%; font-weight: bold; }
2014-01-27 21:52:30 +01:00
h1, h2, h3, h4, h5 { margin: 0.7em 0 0.5em 0; }
header { text-align: center; font-family: "OpenSansLight", sans;
line-height: 1.3em; font-weight: 400; font-size: 1.2em;
2014-01-28 08:43:25 +01:00
padding-top: 1em; }
2014-01-27 21:52:30 +01:00
header h1 { font-size: 1.5em; margin:0 0 0.3em 0; }
header a { color: $text; }
2014-05-12 15:21:35 +02:00
pre { background-color: #f5f5f5; padding: 0.5em; margin: 0.5em 0; }
code { font-family: mono; }
2014-01-27 21:52:30 +01:00
nav { text-align: center; font-size: 120%; margin: 1em 0; }
2014-01-28 13:57:57 +01:00
nav ul li { display: inline; margin: 0; clear: both; padding: 0 10px 0 11px; }
nav ul li:nth-child(n+2) { border-left: 1px solid $rule; }
2014-01-27 21:52:30 +01:00
footer { font-size: 75%; padding-bottom: 175px; }
2014-01-28 17:13:59 +01:00
em { font-style: italic; }
2014-01-27 21:52:30 +01:00
table { width: 100%; }
thead { color: $dim; }
th, td { padding: 0.3em; }
2014-02-14 12:02:40 +01:00
tr { border-bottom: 1px dotted $tr-rule; }
2014-01-27 21:52:30 +01:00
2014-01-28 13:43:46 +01:00
.publi_table td:nth-child(1) { width: 30%; }
.publi_table td:nth-child(2) { width: 60%; }
.publi_table td:nth-child(3) { width: 10%; }
2014-09-24 13:04:09 +02:00
ul { list-style-image: url('/images/bullet_dark.png'); }
2014-04-10 09:57:08 +02:00
ul li { margin-left: 1em; }
ol { list-style-type: decimal; }
ol li { margin-bottom: 1em; padding-right: 10px; }
ol li:hover { border-right: 3px solid $links; padding-right: 7px; }
2014-01-27 21:52:30 +01:00
.float-left { float: left; }
.right, .float-right { float: right; }
.clear { clear: both; }
.switcher { float: left; }
.credits { color: $dim; }
2014-03-21 19:54:44 +01:00
.centered_img { display: block; margin: 1em auto; }
2014-01-28 21:21:05 +01:00
#wrapper { max-width: $in_width; margin: auto; }
2014-01-27 21:52:30 +01:00
#outter-wrapper { width: 100%; height: auto; min-height: 100%; position: relative; }
2014-09-24 13:04:09 +02:00
#foot_image { height: 150px; background-image: url('/images/backsky.png');
2014-09-06 19:27:35 +02:00
position: absolute; bottom: 0px; width: 100%; text-align: center; overflow: hidden; }
2014-09-24 13:04:09 +02:00
#clouds { background-image: url('/images/clouds.png'); height: 150px; width: 200%;
2014-09-06 19:27:35 +02:00
position: relative; top: -150px; margin-bottom: -150px; }
#foot_image:active #ski { visibility: visible; animation: ski 3s linear; }
#clouds:hover { animation: clouds 100s infinite linear; }
#ski { position: relative; visibility: hidden; top: -107px; left: -210px; }
2014-01-27 21:52:30 +01:00
2014-05-19 14:22:58 +02:00
#portrait { margin: 0 15px 15px 0; width: 150px; display: inline-block; vertical-align:middle; }
#info span { display: inline-block; width: 100%; max-width: 618px; vertical-align: middle; }
2014-01-28 17:21:55 +01:00
@media (max-width: $small-width) {
2014-01-28 21:21:05 +01:00
body { font-size: 80%; }
2014-01-28 17:21:55 +01:00
.switcher { float: none; }
}
2014-01-27 21:52:30 +01:00
@media (max-width: $width) {
#outter-wrapper { width: 100%; }
header h1 { font-size: 1.2em; }
header { font-size: 1em; }
2014-01-28 21:21:05 +01:00
body { padding: 0 $margin; }
2014-01-27 21:52:30 +01:00
#foot_image { display: none; }
footer { display: none; }
}
2014-09-06 19:27:35 +02:00
@keyframes clouds {
0% { transform: translate(0, 0); }
100% { transform: translate(-774px, 0); }
}
@keyframes ski {
0% { transform: translate(0, 0) rotate(0deg); }
10% { transform: translate(10px, 0) rotate(0deg); }
20% { transform: translate(10px, 8px) rotate(45deg); }
25% { transform: translate(25px, 16px) rotate(15deg); }
30% { transform: translate(55px, 32px) rotate(0deg); }
40% { transform: translate(90px, 20px) rotate(-20deg); }
50% { transform: translate(110px, 15px) rotate(-200deg); }
60% { transform: translate(130px, 35px) rotate(-380deg); }
68% { transform: translate(164px, 27px) rotate(-360deg); }
100% { transform: translate(300px, 66px) rotate(20deg); }
}