Skip to content
Permalink
f1fd1e568a
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
96 lines (94 sloc) 1.36 KB
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500');
body{
background-color: #ffffff;
font:'Roboto';
overflow:scrollbar;
min-width:70px;
}
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, div.insideLeft{
width:48%;
display:inline-block;
margin-right:1%;
vertical-align:top;
}
div.rightBlock, div.insideRight{
width:48%;
display:inline-block;
margin-left:1%;
vertical-align:top;
}
@media (max-width: 700px){
body{
min-width: 300px;
}
div.leftBlock{
width:100%;
margin:0px;
}
div.rightBlock{
width:100%;
margin:0px;
}
a{
padding: 5px 0px;
}
div.caption{
margin:5px 0px;
}
}