59 lines
682 B
CSS
59 lines
682 B
CSS
|
body {
|
||
|
margin: 0;
|
||
|
font-family: Verdana, sans-serif;
|
||
|
background-color: #FFF;
|
||
|
}
|
||
|
|
||
|
.column {
|
||
|
float: left;
|
||
|
overflow-x: hidden;
|
||
|
z-index: 1;
|
||
|
min-height: 85vh;
|
||
|
height: auto !important;
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
color: #000;
|
||
|
border: solid;
|
||
|
border-radius: 15px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.pad {
|
||
|
padding: 10px;
|
||
|
}
|
||
|
|
||
|
.head {
|
||
|
float: left;
|
||
|
border: solid;
|
||
|
border-radius: 15px;
|
||
|
width: 100%;
|
||
|
color: #000;
|
||
|
text-align: center;
|
||
|
margin-bottom: 25px;
|
||
|
}
|
||
|
|
||
|
.nav {
|
||
|
text-align: center;
|
||
|
word-spacing: 5px;
|
||
|
color: #000;
|
||
|
border: solid;
|
||
|
border-radius: 15px;
|
||
|
padding-top: 15px;
|
||
|
}
|
||
|
|
||
|
a:link {
|
||
|
color: #000;
|
||
|
}
|
||
|
|
||
|
a:visited {
|
||
|
color: #000;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: #000;
|
||
|
}
|
||
|
|
||
|
a:active {
|
||
|
color: #000;
|
||
|
}
|