forked from gergely/calendar-social
122 lines
1.8 KiB
CSS
122 lines
1.8 KiB
CSS
header > h1 > img {
|
|
height: 1em;
|
|
}
|
|
|
|
#content {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.ui.profile {
|
|
display: block;
|
|
position: relative;
|
|
height: 50px;
|
|
}
|
|
|
|
.ui.profile > .avatar {
|
|
width: 48px;
|
|
height: 48px;
|
|
border: 1px solid black;
|
|
border-radius: 50%;
|
|
position: absolute;
|
|
}
|
|
|
|
.ui.profile > .display.name {
|
|
position: absolute;
|
|
left: 58px;
|
|
font-weight: bold;
|
|
color: #000000;
|
|
}
|
|
|
|
.ui.profile > .handle {
|
|
position: absolute;
|
|
top: 1.5em;
|
|
left: 58px;
|
|
color: #666666;
|
|
}
|
|
|
|
.ui.centered.statistics {
|
|
justify-content: center;
|
|
}
|
|
|
|
.timezone-warning {
|
|
color: #e94a4a;
|
|
}
|
|
|
|
footer {
|
|
margin-top: 3em;
|
|
font-weight: bold;
|
|
border-top: 1px dotted black;
|
|
padding-top: 1em;
|
|
}
|
|
|
|
@media not speech {
|
|
.sr-only {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
table.calendar > * {
|
|
font-family: sans;
|
|
}
|
|
|
|
table.calendar {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
table-layout: fixed;
|
|
}
|
|
|
|
tr.month > td {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
border-bottom: 2px solid black;
|
|
padding-bottom: .5em;
|
|
}
|
|
|
|
tr.month > td > a {
|
|
font-weight: normal;
|
|
color: black;
|
|
}
|
|
|
|
tr.month > td.month-name > a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
tr.days > td {
|
|
text-align: center;
|
|
border-bottom: 2px solid black;
|
|
}
|
|
|
|
tr.week > td {
|
|
height: 3em;
|
|
}
|
|
|
|
tr.week > td > span.day-num {
|
|
font-weight: bold;
|
|
}
|
|
|
|
tr.week > td.other-month > span.day-num {
|
|
font-weight: normal;
|
|
color: #909090;
|
|
}
|
|
|
|
tr.week > td.today {
|
|
background-color: #d8d8d8;
|
|
}
|
|
|
|
tr.week > td > a.event {
|
|
display: block;
|
|
color: black;
|
|
text-decoration: none;
|
|
border: 1px solid green;
|
|
background-color: white;
|
|
border-radius: 2px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
tr.sizer > td {
|
|
width: 14.2857%;
|
|
height: 0;
|
|
}
|