Skip to content
Permalink
cb409250cc
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
99 lines (96 sloc) 1.35 KB
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500');
body{
background-color: #ffffff;
font:'Roboto';
overflow:scrollbar;
min-width:750px;
}
table{
border-collapse: collapse;
}
table, th, td{
border: 2px black solid;
background-color: rgb(200,200,255)
}
th,td{
padding: 15px;
}
a{
font-family:'Roboto';
font-size:1em;
text-align:center;
display: inline-block;
text-decoration: none;
color:white;
padding: 5px 5px 10px 5px;
}
a.blockLink{
width:100%;
text-align:left;
color: #000e2f;
}
a.homepage{
position:fixed;
bottom:0;
left:0;
width:100%;
text-align:left;
color: #000e2f;
}
a:link, a:visited{
}
a:hover, a:active{
color: gray;
}
div{
background-color: #ffffff;
color:white;
width:100%;
}
div.caption{
background-color:#000e2f;
text-align:center;
}
div.header{
background-color:rgb(18,33,74);
text-align:center;
}
div.topLink{
display:inline;
width:25%;
padding:0 1%;
background-color:inherit;
}
div.leftBlock{
width:48%;
display:inline-block;
margin-right:1%;
vertical-align: top;
}
div.rightBlock{
width:48%;
display:inline-block;
margin-left:1%;
vertical-align: top;
}
@media (max-width: 600px){
body{
min-width: 300px;
}
div.leftBlock{
width:100%;
margin:0px 0px;
}
div.rightBlock{
width:100%;
margin:0px 0px;
}
a{
padding: 5px 0px;
}
div.caption{
margin:5px 0px;
}
div.header{
}
}