Advertisement
Guest User

Example CSS for Foundry

a guest
Dec 23rd, 2022
2,417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.69 KB | None | 0 0
  1. .narrate {
  2.      border: 1px solid #392104;
  3.      padding: 10px;
  4.      margin: 10px;
  5.      background: linear-gradient(to bottom, rgba(237, 213, 181, 1) 0%, rgba(237, 213, 181, 0.2) 100%);
  6.      box-shadow: 3px 3px #807e76;
  7.      color: #392104;
  8. }
  9.  .investigate {
  10.      border-left: 3px solid #303823;
  11.      padding: 10px;
  12.      margin: 10px;
  13.      background: linear-gradient(to right, rgba(195, 202, 182, 1) 0%, rgba(195, 202, 182, 0.2) 100%);
  14.      color: #303823;
  15. }
  16.  .narrate h5, .investigate h5 {
  17.      padding: 0px;
  18.      margin: 0px;
  19.      font-size: var(--font-size-14);
  20. }
  21.  .narrate h5 {
  22.      border-bottom: 2px solid #392104;
  23. }
  24.  .investigate h5 {
  25.      border-bottom: 2px solid #303823;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement