Advertisement
Guest User

Untitled

a guest
Feb 18th, 2023
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.85 KB | None | 0 0
  1.  
  2. header h1{
  3.   color: #333333
  4. }
  5. a:link, a:visited, a:hover {
  6.   color: #702802;  
  7. }
  8. a:hover{
  9.     text-decoration: none
  10. }
  11. a:active {
  12.     position: relative;
  13.     top: 1px;
  14. }
  15. .boardlist .sub{
  16.     color: transparent
  17. }
  18. .boardlist .sub a{
  19.     color: #000000;    
  20.     background-color: #D7CFC0;
  21.     font-weight: bold;
  22.     text-decoration: none;
  23.     padding: 0.5em;
  24.     border-right: 1px solid #706B6E;
  25.     border-bottom: 1px solid #706B5E;
  26.     border-left: 1px solid #706B5E;
  27.     border-bottom-right-radius: 0.5em;
  28.     border-bottom-left-radius: 0.5em;
  29. }
  30. .boardlist .sub a[href$="index.html"]:after{
  31.     content:'/';
  32. }
  33. .boardlist .sub a[href$="index.html"]:before{
  34.     content:'/';
  35. }
  36. .boardlist .sub a:hover{
  37.     text-decoration: none !important;
  38.     box-shadow: 1px 1px 2px #999999;
  39. }
  40. .post.reply .body{
  41.     margin-left: 1.2em!important;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement