report.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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: center;
  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. @media screen and (max-width : 990px){
  34. section.report article img{
  35. height: 3em;
  36. width: 3em;
  37. margin: 0.2em;
  38. }
  39. }
  40. section.report article p{
  41. color: #ffffff;
  42. text-align: left;
  43. text-indent: 1em;
  44. padding: 0.5em;
  45. }
  46. section.report article a.a_button{
  47. margin: 0.5em auto;
  48. display: inline-block;
  49. }