git ssb

16+

Dominic / patchbay



Tree: 1c2926f12ff8e365e1d469f23180b50d50b9c749

Files: 1c2926f12ff8e365e1d469f23180b50d50b9c749 / app / page / calendar.mcss

1904 bytesRaw
1CalendarPage {
2 width: 100%
3
4 display: grid
5 justify-content: center
6 align-content: start
7 justify-items: center
8
9 overflow-y: scroll
10}
11
12
13Calendar {
14 font-family: 'input_mono_regular', monospace
15 text-transform: capitalize
16
17 padding: 0
18 margin: 0
19 margin-bottom: 4rem
20
21 section {
22 top: 50%
23 margin: 0 auto
24 user-select: none
25 -webkit-user-select: none
26 -ms-user-select: none
27 -webkit-transform: translateY(-50%)
28 -ms-transform: translateY(-50%)
29 transform: translateY(-50%)
30 text-align: center
31 }
32
33 div.header {
34 margin: 40px 0
35 text-align: left
36 align-content: flex-start
37
38 display: grid
39 justify-content: space-between
40 grid-auto-flow: column
41
42 div.year {
43 font-size: 40px
44 font-weight: bold
45
46 a {
47 text-align: center
48 color: #000
49 width: 30px
50 display: inline-block
51 margin-left: 10px
52
53 :hover {
54 color: #ffffff
55 background: #000
56 cursor: pointer
57 text-decoration: none
58 }
59 }
60
61 }
62
63 div.actions {
64 display: grid
65 justify-content: space-between
66 grid-auto-flow: column
67 grid-gap: 1rem
68 }
69 }
70
71 div.months {
72 display: flex
73
74 div.month {
75 margin-right: 20px
76
77 div.month-name {
78 font-size: 20px
79 font-weight: bold
80 text-align: left
81 cursor: pointer
82 margin-bottom: 5px
83 }
84
85 div.Marama {
86 }
87 }
88 }
89
90 /* @media only screen and (min-width: 1440px) */
91 /* { section { width: 1440px; }} */
92
93 /* @media only screen and (max-width: 1440px) */
94 /* { section { width: 720px; }} */
95
96 /* @media only screen and (max-width: 720px) */
97 /* { section { width: 360px; }} */
98}
99
100
101
102CalendarEvents {
103 width: 50rem
104 margin-right: 6rem
105
106 div {
107 width: 50rem
108
109 div.Message {
110 width: 50rem
111 section.bottom { display: none }
112 }
113 }
114}
115

Built with git-ssb-web