43 lines
644 B
CSS
43 lines
644 B
CSS
|
|
|
||
|
|
.view-links > span {
|
||
|
|
display: inline-block;
|
||
|
|
white-space: nowrap;
|
||
|
|
margin-right: 1ex;
|
||
|
|
margin-bottom: 1ex;
|
||
|
|
padding: 0.5ex;
|
||
|
|
border: 1pt solid;
|
||
|
|
border-radius: 1ex;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.downloads, .download-links {
|
||
|
|
& > * {
|
||
|
|
display: inline-block;
|
||
|
|
margin-right: 1ex;
|
||
|
|
margin-bottom: 1ex;
|
||
|
|
padding: 0.5ex;
|
||
|
|
border: 1px solid;
|
||
|
|
border-radius: 1ex;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.downloads, .view-links {
|
||
|
|
& > .selected {
|
||
|
|
color: var(--link);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.text-and-file {
|
||
|
|
position:relative;
|
||
|
|
|
||
|
|
textarea {
|
||
|
|
width: 64em;
|
||
|
|
}
|
||
|
|
|
||
|
|
input[type="file"] {
|
||
|
|
position:absolute;
|
||
|
|
bottom:0;right:0;
|
||
|
|
}
|
||
|
|
}
|