parent
9b413193af
commit
cf9b9e615a
|
|
@ -1,6 +1,23 @@
|
|||
$background_color: #242424;
|
||||
$color: #a6a6a6;
|
||||
$color_visited: gray;
|
||||
$color_hover: #dfdfdf;
|
||||
$color_active: #a6a6a6;
|
||||
|
||||
$div_background_color: #1038a7;
|
||||
|
||||
$title_font_family: Roboto;
|
||||
$title_font_size: 21pt;
|
||||
|
||||
$regular_font_family: Lato;
|
||||
$regular_font_size: 12pt;
|
||||
$regular_image_font_size: 10.5pt;
|
||||
|
||||
$foot_font_size: 9.8pt;
|
||||
|
||||
body {
|
||||
background-color: white;
|
||||
color: #272727;
|
||||
background-color: $background_color;
|
||||
color: $color;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
|
|
@ -13,36 +30,25 @@ body {
|
|||
src: url("../images/Lato-Regular.ttf");
|
||||
}
|
||||
|
||||
$div_background_color: rgb(16, 56, 167);
|
||||
|
||||
$title_font_family: Roboto;
|
||||
$title_font_size: 21pt;
|
||||
|
||||
$regular_font_family: Lato;
|
||||
$regular_font_size: 12pt;
|
||||
$regular_image_font_size: 10.5pt;
|
||||
|
||||
$foot_font_size: 9.8pt;
|
||||
|
||||
.global_segment {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 21cm;
|
||||
|
||||
a:link {
|
||||
color: white;
|
||||
color: $background_color;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #dfdfdf;
|
||||
color: $color_visited;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: gray;
|
||||
color: $color_hover;
|
||||
}
|
||||
|
||||
a:active {
|
||||
color: #a6a6a6;
|
||||
color: $color_active;
|
||||
}
|
||||
|
||||
ul {
|
||||
|
|
@ -80,7 +86,7 @@ $foot_font_size: 9.8pt;
|
|||
float: left;
|
||||
width: 210px;
|
||||
height:250px;
|
||||
color: white;
|
||||
color: $color;
|
||||
font-weight: bold;
|
||||
background-color: $div_background_color;
|
||||
}
|
||||
|
|
@ -99,7 +105,7 @@ $foot_font_size: 9.8pt;
|
|||
padding: 15px;
|
||||
width: 180px;
|
||||
height:220px;
|
||||
color: white;
|
||||
color: $color;
|
||||
font-size: $regular_image_font_size;
|
||||
font-family: $regular_font_family;
|
||||
font-weight: bold;
|
||||
|
|
@ -116,7 +122,7 @@ $foot_font_size: 9.8pt;
|
|||
width: 250px;
|
||||
padding-top: 12px;
|
||||
height: 45px;
|
||||
color: white;
|
||||
color: $color;
|
||||
font-family: $title_font_family;
|
||||
font-size: $title_font_size;
|
||||
text-align: center;
|
||||
|
|
@ -170,7 +176,7 @@ $foot_font_size: 9.8pt;
|
|||
ul li::before {
|
||||
content: "+ >";
|
||||
color: $div_background_color;
|
||||
background-color: white;
|
||||
background-color: $background_color;
|
||||
font-weight: bold;
|
||||
display: inline-block;
|
||||
width: 2em;
|
||||
|
|
|
|||
Loading…
Reference in New Issue