Files: 1f6537ee5b47f8d5332b0334c11845264d6264d9 / css / style.css
1714 bytesRaw
1 | html, |
2 | body { |
3 | display: block; |
4 | height: 100%; |
5 | width: 100%; |
6 | padding: 0px; |
7 | margin: 0px; |
8 | font-family: 'input_mono_regular'; |
9 | text-transform: uppercase; |
10 | } |
11 | |
12 | section { |
13 | position: relative; |
14 | top: 50%; |
15 | margin: 0px auto; |
16 | user-select: none; |
17 | -webkit-user-select: none; |
18 | -ms-user-select: none; |
19 | -webkit-transform: translateY(-50%); |
20 | -ms-transform: translateY(-50%); |
21 | transform: translateY(-50%); |
22 | text-align: center; |
23 | } |
24 | |
25 | .month { width:100px; margin: 10px; display: inline-block;} |
26 | .header { margin: 0px 0px 40px 10px; text-align: left; align-content: flex-start;} |
27 | |
28 | p { margin: 0px; } |
29 | |
30 | .y { font-size: 40px; font-weight: bold; } |
31 | .y a { text-align: center; color: #000; width: 30px; display: inline-block; margin-left: 10px;} |
32 | .y a:hover { color: #ffffff; background: #000; cursor: pointer;} |
33 | .p { font-size: 20px; color: #8b8b8b} |
34 | |
35 | .m { font-size: 20px; font-weight: bold; margin-bottom: 5px; text-align: left; } |
36 | |
37 | svg.graph { color:white; width: 100%; } |
38 | svg.graph text {font-family: 'input_mono_regular'; stroke:none; fill:#8b8b8b; font-size:14px; text-anchor: middle; } |
39 | svg.graph text.dayLabel { font-size: 10px; } |
40 | svg.graph rect { stroke:none } |
41 | svg.graph rect.null { fill: none; stroke: none;} |
42 | svg.graph rect.today { fill:#ff1e00; } |
43 | svg.graph rect.day { fill:#8b8b8b; } |
44 | svg.graph rect.weekend { fill:#747474 } |
45 | svg.graph rect.gone { fill:#000000 } |
46 | svg.graph path { stroke-linecap: butt; stroke-dasharray: 1,1; fill:none; stroke:#333; stroke-width:13px } |
47 | |
48 | @media only screen and (min-width: 1440px) |
49 | { section { width: 1440px; }} |
50 | |
51 | @media only screen and (max-width: 1440px) |
52 | { section { width: 720px; }} |
53 | |
54 | @media only screen and (max-width: 720px) |
55 | { section { width: 360px; }} |
Built with git-ssb-web