Newer
Older
skillcheck-react / app / work / 01 / style.css
p {
  line-height: 2;
}

h1 {
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 0.5em;
}

h2 {
  font-size: 1.5em;
  font-weight: bold;
  padding-bottom: 0.5em;
}

.App {
  font-family: sans-serif;
}

.box {
  padding: 1em;
}

.text-center {
  text-align: center;
}

.bordered {
  border: 1px solid #808080;
  border-radius: 0.4em;
  padding: 1em;
}

button:hover {
  cursor: pointer;
  opacity: 0.8;
}

.button-rich {
  border: none;
  border-radius: 0.2em;

  padding-inline: .5em;
  color: #222
}

.golden {
  background: linear-gradient(45deg,
      #b67b03 0%,
      #daaf08 45%,
      #fee9a0 70%,
      #daaf08 85%,
      #b67b03 90% 100%);

  border-right: 1px solid #b67b03;
  border-bottom: 1px solid #b67b03;

  filter: drop-shadow(0.2em 0.2em 2px #b67b03);
}

.silver {
  background: linear-gradient(45deg,
      #757575 0%,
      #9e9e9e 45%,
      #e8e8e8 70%,
      #9e9e9e 85%,
      #757575 90% 100%);

  border-right: 1px solid #757575;
  border-bottom: 1px solid #757575;

  filter: drop-shadow(0.2em 0.2em 2px #757575);
}