forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
227 lines
5.2 KiB
CSS
227 lines
5.2 KiB
CSS
|
|
body
|
|
{
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-size-adjust: none;
|
|
padding-top: 450px;
|
|
}
|
|
body.red
|
|
{
|
|
background: #e41f3a;
|
|
background: -moz-linear-gradient(top, #e41f3a 0%, #e41f3a 40%, #f08895 100%);
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e41f3a), color-stop(40%,#e41f3a), color-stop(100%,#f08895));
|
|
background: -webkit-linear-gradient(top, #e41f3a 0%,#e41f3a 40%,#f08895 100%);
|
|
background: -o-linear-gradient(top, #e41f3a 0%,#e41f3a 40%,#f08895 100%);
|
|
background: -ms-linear-gradient(top, #e41f3a 0%,#e41f3a 40%,#f08895 100%);
|
|
background: linear-gradient(to bottom, #e41f3a 0%,#e41f3a 40%,#f08895 100%);
|
|
}
|
|
body.black
|
|
{
|
|
background: #000000;
|
|
background: -moz-linear-gradient(top, #000000 0%, #000000 40%, #404040 100%);
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000000), color-stop(40%,#000000), color-stop(100%,#404040));
|
|
background: -webkit-linear-gradient(top, #000000 0%,#000000 40%,#404040 100%);
|
|
background: -o-linear-gradient(top, #000000 0%,#000000 40%,#404040 100%);
|
|
background: -ms-linear-gradient(top, #000000 0%,#000000 40%,#404040 100%);
|
|
background: linear-gradient(to bottom, #000000 0%,#000000 40%,#404040 100%);
|
|
}
|
|
body.blue
|
|
{
|
|
background: #248AB2;
|
|
background: -moz-linear-gradient(top, #248AB2 0%, #248AB2 40%, #50BCE6 100%);
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#248AB2), color-stop(40%,#248AB2), color-stop(100%,#50BCE6));
|
|
background: -webkit-linear-gradient(top, #248AB2 0%,#248AB2 40%,#50BCE6 100%);
|
|
background: -o-linear-gradient(top, #248AB2 0%,#248AB2 40%,#50BCE6 100%);
|
|
background: -ms-linear-gradient(top, #248AB2 0%,#248AB2 40%,#50BCE6 100%);
|
|
background: linear-gradient(to bottom, #248AB2 0%,#248AB2 40%,#50BCE6 100%);
|
|
}
|
|
body.gray
|
|
{
|
|
background: #E0E0E0;
|
|
background: -moz-linear-gradient(top, #E0E0E0 0%, #E0E0E0 40%, #FAFAFA 100%);
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#E0E0E0), color-stop(40%,#E0E0E0), color-stop(100%,#FAFAFA));
|
|
background: -webkit-linear-gradient(top, #E0E0E0 0%,#E0E0E0 40%,#FAFAFA 100%);
|
|
background: -o-linear-gradient(top, #E0E0E0 0%,#E0E0E0 40%,#FAFAFA 100%);
|
|
background: -ms-linear-gradient(top, #E0E0E0 0%,#E0E0E0 40%,#FAFAFA 100%);
|
|
background: linear-gradient(to bottom, #E0E0E0 0%,#E0E0E0 40%,#FAFAFA 100%);
|
|
}
|
|
#wrap
|
|
{
|
|
max-width: 100%;
|
|
height: 400px;
|
|
margin: 0 auto;
|
|
padding: 50px 20px 0;
|
|
text-align: center;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.05);
|
|
-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.05);
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
|
|
border-bottom: 1px solid #c01129;
|
|
background: #fff;
|
|
border-top: 6px solid #e41f3a;
|
|
}
|
|
|
|
.teaser
|
|
{
|
|
max-width: 320px;
|
|
border: none;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.top_row, .mid_row, .bot_row
|
|
{
|
|
text-align: center;
|
|
position: relative;
|
|
display: table-row;
|
|
}
|
|
|
|
.teaser
|
|
{
|
|
min-width: 280px;
|
|
max-width: none;
|
|
width: 33.3%;
|
|
height: 33.3%;
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
margin: 0;
|
|
}
|
|
.red .teaser
|
|
{
|
|
border-bottom: 1px solid #c01129;
|
|
}
|
|
.black .teaser
|
|
{
|
|
border-bottom: 1px solid #404040;
|
|
}
|
|
.blue .teaser
|
|
{
|
|
border-bottom: 1px solid #50BCE6;
|
|
}
|
|
.gray .teaser
|
|
{
|
|
border-bottom: 1px solid #FAFAFA;
|
|
}
|
|
.bot_row .teaser
|
|
{
|
|
border-bottom: none;
|
|
}
|
|
|
|
.middle
|
|
{
|
|
min-width: 280px;
|
|
}
|
|
.red .middle
|
|
{
|
|
border-left: 1px solid #c01129;
|
|
border-right: 1px solid #c01129;
|
|
}
|
|
.black .middle
|
|
{
|
|
border-left: 1px solid #404040;
|
|
border-right: 1px solid #404040;
|
|
}
|
|
.blue .middle
|
|
{
|
|
border-left: 1px solid #50BCE6;
|
|
border-right: 1px solid #50BCE6;
|
|
}
|
|
.gray .middle
|
|
{
|
|
border-left: 1px solid #FAFAFA;
|
|
border-right: 1px solid #FAFAFA;
|
|
}
|
|
|
|
.teaser img
|
|
{
|
|
max-width: 100%;
|
|
}
|
|
|
|
#wrap
|
|
{
|
|
position: relative;
|
|
top: auto;
|
|
left: auto;
|
|
right: auto;
|
|
width: auto;
|
|
padding: 20px;
|
|
height: auto;
|
|
-webkit-box-shadow: none;
|
|
-moz-box-shadow: none;
|
|
box-shadow: none;
|
|
border-top: 0;
|
|
-webkit-box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.13);
|
|
-moz-box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.13);
|
|
box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.13);
|
|
}
|
|
|
|
.container
|
|
{
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: table;
|
|
}
|
|
|
|
#demos
|
|
{
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 224px;
|
|
margin: auto;
|
|
position: relative;
|
|
}
|
|
|
|
#demos li
|
|
{
|
|
float: left;
|
|
display: inline-block;
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
margin: 4px;
|
|
}
|
|
#demos li a
|
|
{
|
|
line-height: 48px;
|
|
display: block;
|
|
color: inherit;
|
|
}
|
|
#demos li.red
|
|
{
|
|
background-color: #e41f3a;
|
|
color: #e41f3a;
|
|
}
|
|
#demos li.black
|
|
{
|
|
background-color: #080808;
|
|
color: #080808;
|
|
}
|
|
#demos li.gray
|
|
{
|
|
background-color: #E0E0E0;
|
|
color: #E0E0E0;
|
|
}
|
|
#demos li.blue
|
|
{
|
|
background-color: #248AB2;
|
|
color: #248AB2;
|
|
}
|
|
.black .header h1, .black .header h5, .red .header h1, .red .header h5, .blue .header h1, .blue .header h5
|
|
{
|
|
color: White;
|
|
}
|
|
.gray .header h1, .gray .header h5
|
|
{
|
|
color: gray;
|
|
}
|