blob: 7a4ddc19f4ef1dc660fb3eb9e25af1279f9f1036 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
body {
margin: 0;
padding: 0;
overflow-x: hidden;
font-family: 'Segoe UI';
}
.fse_primary_background {
background-color: #303030;
}
.fse_primary_accent_background {
background-color: #009FE7;
}
.fse_border_background {
background-color: #404040;
}
.fse_gray_foreground {
color: #808080;
}
.fse_primary_background_light {
background-color: #404040;
}
.fse_primary_foreground {
color: #EEEEEE;
}
.fse_primary_accent {
color: #009FE7;
}
.fse_header_back {
position: fixed;
padding: 20px;
box-shadow: black 1px 1px 10px 1px;
z-index: 100;
width: 100%;
}
.fse_machine_logo {
position: absolute;
left: 20px;
top: 20px;
width: 120px;
float: left;
}
.fse_twine_logo {
height: 80px;
display: block;
margin: auto auto;
}
.fse_container {
position: absolute;
margin-top: 100px;
overflow: hidden;
clear: both;
width:100%;
}
.fse_side_abstract {
position: fixed;
width: 60px;
height: 100%;
float: left;
background-image: url('../../Images/fse/abstract1.png');
background-repeat: repeat;
}
.fse_side_abstract_top {
position: absolute;
box-shadow: black 0px 3px 10px 2px;
width: 100%;
}
.fse_history_downloads_container {
float: left;
margin-left: 150px;
margin-top: 20px;
width: 500px;
}
.fse_history_download {
clear: both;
margin-top: 60px;
}
.fse_download_title {
vertical-align: baseline middle;
}
.fse_download_image {
height: 32px;
}
.fse_download_name {
margin-top: 5px;
margin-left: 5px;
vertical-align: top;
display: inline-block;
}
.fse_download_date {
float: right;
margin-top: 5px;
vertical-align: top;
display: inline-block;
}
.fse_download_separator {
clear: both;
height: 1px;
margin-top: 5px;
}
.fse_download_commets {
font-size: 12px;
margin-top: 10px;
}
.fse_download_link {
float: right;
text-decoration: none;
padding: 3px 15px;
border-radius: 2px;
font-size: 14px;
}
.fse_latest_version_container {
border-radius: 5px;
float: left;
margin-top: 100px;
margin-left: 200px;
width: 400px;
text-align: center;
box-shadow: black 0px 0px 5px 0px;
}
.fse_download_image_latest {
width: 64px;
margin-top: 20px;
}
.fse_download_title_latest {
margin-top: 10px;
font-size: 20px;
font-weight: 400;
text-align: center;
}
.fse_download_button_latest {
display: block;
padding: 15px 20px;
margin: 30px;
margin-top: 90px;
font-weight: 700;
border-radius: 25px;
text-decoration: none;
box-shadow: black 0px 0px 5px 0px;
}
.fse_title {
position: absolute;
display: inline-block;
float: left;
margin-left: 140px;
margin-top: 20px;
font-size: 25px;
font-weight: 400;
}
|