51 lines
754 B
CSS
51 lines
754 B
CSS
div.container {
|
|
width: 100%;
|
|
}
|
|
|
|
header {
|
|
background-color: black;
|
|
padding: 1em;
|
|
color: white;
|
|
clear: left;
|
|
text-align: center;
|
|
}
|
|
|
|
body {
|
|
font-family: Roboto;
|
|
}
|
|
|
|
h1 {
|
|
color: white;
|
|
}
|
|
|
|
p {
|
|
font-family: "Open Sans";
|
|
}
|
|
|
|
.tablink {
|
|
background-color: #555;
|
|
color: white;
|
|
float: left;
|
|
border: none;
|
|
outline: none;
|
|
cursor: pointer;
|
|
padding: 14px 16px;
|
|
font-size: 17px;
|
|
width: 50%;
|
|
}
|
|
|
|
.tablink:hover {
|
|
background-color: #777;
|
|
}
|
|
|
|
.tabcontent {
|
|
color: #111;
|
|
display: none;
|
|
padding: 50px;
|
|
text-align: center;
|
|
}
|
|
|
|
#tabintro { background-color: #ccc; }
|
|
#tababout { background-color: #ccc; }
|
|
|
|
/* You need CSS to make pretty pages. Here's part 2/3 of the flag: t3ct1ve_0r_ju5t */ |