Initial Commit
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
html {
|
||||
background: url("assets/background.jpg");
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
html * {
|
||||
color: white;
|
||||
font-family: Roboto;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-color: #333;
|
||||
overflow: hidden;
|
||||
border-radius: 15px;
|
||||
box-shadow: 10px 10px 5px rgba(0,0,0,0.5);
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.navbar a {
|
||||
float: left;
|
||||
color: #f2f2f2;
|
||||
text-align: center;
|
||||
padding: 14px 16px;
|
||||
text-decoration: none;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.navbar a:hover {
|
||||
background-color: #6687ff;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.navbar a.active {
|
||||
background-color: #2250f5;
|
||||
color: white;
|
||||
}
|
||||
|
||||
@-webkit-keyframes fadeIn {
|
||||
from {opacity: 0;}
|
||||
to {opacity: 1;}
|
||||
}
|
||||
Reference in New Issue
Block a user