You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
913 B
50 lines
913 B
/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
|
|
HTML content. To learn how to do something, just try searching Google for questions like
|
|
"how to change link color." */
|
|
|
|
h1 {
|
|
color: #24b8bf;
|
|
}
|
|
|
|
body {
|
|
background-repeat: repeat;
|
|
background-color: black;
|
|
background-image: url(/BackgroundFinal.png);
|
|
color: black;
|
|
font-family: 'Montserrat-Regular';
|
|
}
|
|
|
|
.links ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background-color: #0460c9
|
|
}
|
|
|
|
.links li {
|
|
float: left;
|
|
}
|
|
|
|
.links a {
|
|
display: block;
|
|
padding: 10px;
|
|
}
|
|
|
|
div.links {
|
|
box-shadow: 8px 6px blue;
|
|
}
|
|
|
|
.links a:hover {
|
|
color: #ff12e7;
|
|
background-color: #ff12e7;
|
|
}
|
|
|
|
.links a:active {
|
|
background-color: #02c27b;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Montserrat-Regular';
|
|
src: url(https://amateur-bartender-man.neocities.org/Montserrat/Montserrat-Regular.ttf);
|
|
} |