report.css 902 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* Main reports page. */
  2. section.report{
  3. width: 40%;
  4. display: inline-block;
  5. vertical-align: top;
  6. margin: 0.5em;
  7. }
  8. @media screen and (max-width : 990px){
  9. section.report{
  10. width: 90%;
  11. margin: 0.5em auto;
  12. display: block;
  13. }
  14. }
  15. section.report article{
  16. text-align: left;
  17. }
  18. section.report article h3{
  19. color: #ffffff;
  20. text-shadow: 0 0 0.2em #000000, 0 0 0.2em #000000, 0 0 0.2em #000000, 0 0 0.2em #000000, 0 0 0.2em #000000;
  21. font-size: 190%;
  22. margin: 0.2em;
  23. }
  24. section.report article img{
  25. float: right;
  26. height: 5em;
  27. width: 5em;
  28. margin: 0.5em;
  29. border-radius: 25%;
  30. background: #444444;
  31. border: 0.1em solid var(--ui-color-border);
  32. }
  33. section.report article p{
  34. color: #ffffff;
  35. }
  36. section.report article form{
  37. border: 0.1em solid #483d2a;
  38. border-radius: 0.5em;
  39. padding: 0.5em;
  40. text-align: center;
  41. }