Skip to content
Snippets Groups Projects
styles.css 981 B
Newer Older
WiljamiT's avatar
WiljamiT committed
body {
  margin: 0;
  padding: 0;
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
WiljamiT's avatar
WiljamiT committed
  background-color: rgba(0, 0, 0, 0.5);
WiljamiT's avatar
WiljamiT committed
  color: white;
WiljamiT's avatar
WiljamiT committed
  padding: 0 5px 0 5px;
}
nav button {
  border: 1px solid black;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: lightgreen;
  cursor: pointer;
}
nav button:hover {
  background: red;
WiljamiT's avatar
WiljamiT committed
}

WiljamiT's avatar
WiljamiT committed
.dropdown-content {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 0px 20px 0px;
}
.dropdown-content a {
  margin: 10px;
  width: auto;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}
.dropdown-content a:hover {
  color: red;
}

WiljamiT's avatar
WiljamiT committed
header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/bitcoin-crypto-investment.jpeg");
  height: 300px;
  width: 100%;
WiljamiT's avatar
WiljamiT committed
}/*# sourceMappingURL=styles.css.map */