| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /* Main reports page. */
- section.report{
- width: 40%;
- display: inline-block;
- vertical-align: top;
- margin: 0.5em;
- }
- @media screen and (max-width : 990px){
- section.report{
- width: 90%;
- margin: 0.5em auto;
- display: block;
- }
- }
- section.report article{
- text-align: left;
- }
- section.report article h3{
- color: #ffffff;
- 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;
- font-size: 190%;
- margin: 0.2em;
- }
- section.report article img{
- float: right;
- height: 5em;
- width: 5em;
- margin: 0.5em;
- border-radius: 25%;
- background: #444444;
- border: 0.1em solid var(--ui-color-border);
- }
- section.report article p{
- color: #ffffff;
- }
- section.report article form{
- border: 0.1em solid #483d2a;
- border-radius: 0.5em;
- padding: 0.5em;
- text-align: center;
- }
|