Sovigall/style.css

339 lines
4.8 KiB
CSS
Raw Normal View History

2013-07-26 13:56:19 +02:00
* {
color: #dfdfdf;
2013-08-01 09:31:00 +02:00
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
2013-07-12 17:25:57 +02:00
}
body {
2013-07-26 17:12:29 +02:00
background-color: #262626;
font-size: 0.9em;
}
2015-01-30 15:12:42 +01:00
a {
transition: all 200ms ease-in-out;
}
2013-07-26 17:12:29 +02:00
#title {
line-height: 1.1em;
margin-bottom: 0.3em;
}
#title a {
text-decoration: none;
font-size: 1.1em;
line-height: 1.1em;
}
#title span {
font-size: 0.5em;
font-weight: bold;
vertical-align: middle;
}
2013-08-01 14:08:43 +02:00
.topMenu {
margin: 0.5em 0;
2013-07-26 17:12:29 +02:00
padding: 0px;
border-radius: 0.2em;
}
2013-08-01 14:08:43 +02:00
.topMenu li {
2013-07-26 17:12:29 +02:00
display: inline-block;
padding: 0.3em;
}
2013-08-01 14:08:43 +02:00
.topMenu a {
2013-07-26 17:12:29 +02:00
text-decoration: none;
font-weight: bolder;
margin: 0;
padding: 0.4em;
border-radius: 0.2em;
2013-07-31 12:27:58 +02:00
background-color: #141414;
2013-07-26 17:12:29 +02:00
}
2013-12-23 16:09:58 +01:00
.topMenu a:hover {
background-color: #333;
box-shadow: 1px 1px #000;
}
2013-07-26 17:12:29 +02:00
#breadcrumb {
margin: 1.2em 0;
}
#listFile {
margin: 0 auto;
text-align: center;
2013-07-12 17:25:57 +02:00
}
#listFile a {
2013-07-26 17:12:29 +02:00
width: 270px;
height: 230px;
display: inline-block;
2013-07-12 17:25:57 +02:00
border: 2px solid #dfdfdf;
2013-07-26 17:12:29 +02:00
border-radius: 0.2em;
margin: 0.2em;
padding: 0.2em;
2013-07-12 17:25:57 +02:00
text-decoration: none;
2013-07-26 13:56:19 +02:00
text-align: center;
2013-07-12 17:25:57 +02:00
overflow: hidden;
text-overflow: "...";
2013-07-30 14:45:18 +02:00
position: relative;
2013-08-01 09:31:00 +02:00
vertical-align: top;
2013-07-12 17:25:57 +02:00
}
#listFile img {
2013-07-30 14:45:18 +02:00
display: block;
margin: 0 auto;
2013-07-26 13:56:19 +02:00
vertical-align: middle;
max-height: 170px;
2013-07-30 14:45:18 +02:00
height: 100%;
max-width: 260px;
}
2013-12-20 16:10:56 +01:00
.paste {
margin: 0;
2013-12-23 16:09:58 +01:00
padding: 0;
2013-12-20 16:10:56 +01:00
border: 2px solid #dfdfdf;
border-radius: 0.2em;
background-color: #262626;
display: inline-block;
}
.paste a {
text-decoration: none;
2013-12-23 16:09:58 +01:00
vertical-align: middle;
height: 2em;
line-height: 2em;
}
.paste img {
height: 2em;
float: left;
2013-12-20 16:10:56 +01:00
}
.dir, .video {
2013-07-31 12:27:58 +02:00
background-image: url("images/folder.svg");
background-repeat: no-repeat;
2013-07-30 14:45:18 +02:00
background-size: 48px;
position: absolute;
height: 48px;
width: 48px;
2013-07-30 14:45:18 +02:00
left: 0;
top: 0;
2013-07-12 17:25:57 +02:00
}
.video {
2013-07-31 12:27:58 +02:00
background-image: url("images/video.svg");
}
.fulldir {
2013-07-31 12:27:58 +02:00
background-image: url("images/folder.svg");
background-position: center center;
background-repeat: no-repeat;
2013-07-30 14:45:18 +02:00
background-size: auto 170px;
display: block;
height: 170px;
width: 270px;
}
2013-12-23 16:09:58 +01:00
#listFile .export, #listFile .export ul {
text-align: right;
margin: 0;
padding: 0;
}
#listFile .export li {
display: inline-block;
list-style: none;
margin: 0;
padding: 0;
vertical-align: middle;
}
#listFile .export a {
width: auto;
height: 24px;
display: inline-block;
border: none;
border-radius: none;
text-decoration: none;
text-align: center;
position: relative;
vertical-align: top;
margin: 0;
padding: 0;
}
#sort {
padding: 0 0 0 32px;
position: fixed;
top: 48%;
right: 0;
background-image: url("images/expand.svg");
background-position: left center;
background-repeat: no-repeat;
background-size: auto 32px;
width: 32px;
z-index: 10;
}
#sort:hover {
width: auto;
}
#sort ul {
margin: 0;
padding: 0.2em;
border: 2px solid #dfdfdf;
border-radius: 0.2em;
border-right: none;
background-color: #262626;
}
#sort li {
list-style: none;
margin: 0.4em;
}
#sort a {
padding: 0.4em;
text-decoration: none;
}
2013-07-12 17:25:57 +02:00
#time {
2013-07-26 13:56:19 +02:00
clear: both;
2013-07-12 17:25:57 +02:00
}
#viewFile {
2013-07-26 13:56:19 +02:00
text-align: center;
2013-07-12 17:25:57 +02:00
}
#viewFile table {
2013-07-26 13:56:19 +02:00
width: 60%;
margin: 0 auto;
2013-08-01 09:31:00 +02:00
border: 0.4em solid #2c2c2c;
padding: 0;
border-radius: 0.2em;
2013-07-31 12:27:58 +02:00
border-collapse: collapse;
2013-07-12 17:25:57 +02:00
}
2013-07-26 17:12:29 +02:00
#viewFile table tr:nth-child(even) {
2013-07-31 12:27:58 +02:00
background-color: #2c2c2c;
2013-07-26 17:12:29 +02:00
}
#viewFile th {
2013-07-31 12:27:58 +02:00
padding: 0.3em 0.4em 0.3em 0.3em;
text-align: right;
2013-07-31 12:27:58 +02:00
min-width: 30%;
2013-07-26 17:12:29 +02:00
}
#viewFile td {
2013-07-31 12:27:58 +02:00
padding: 0.3em 0.3em 0.3em 0.4em;
text-align: left;
2013-07-26 17:12:29 +02:00
}
#viewFile h2 {
max-width: 80%;
text-align: center;
margin: 0.4em auto;
}
2015-02-20 11:51:52 +01:00
form {
width: 50%;
margin: 0 auto;
}
label {
display: block;
}
input, textarea {
display: block;
width: 100%;
}
textarea {
height: 8em;
}
input[type="checkbox"] {
display: inline;
width: auto;
}
2015-06-22 15:43:28 +02:00
input, select, options, textarea {
2013-07-26 17:12:29 +02:00
color: #262626;
2013-07-26 10:06:54 +02:00
}
2013-07-12 17:25:57 +02:00
input[type="submit"] {
2013-07-26 17:12:29 +02:00
color: #262626;
2013-07-26 14:00:57 +02:00
}
2013-07-30 14:45:18 +02:00
input[type="file"] {
color: #DFDFDF;
}
2013-07-26 14:00:57 +02:00
video {
2013-07-26 17:12:29 +02:00
width: 55%;
2013-07-31 12:27:58 +02:00
}
#toolbar {
border-radius: 0.2em;
background-color: #141414;
2013-12-20 16:10:56 +01:00
width: 60%;
2013-07-31 12:27:58 +02:00
margin: 0 auto 1.1em auto;
2013-08-01 09:31:00 +02:00
height: 2.3em;
2013-07-31 12:27:58 +02:00
}
#toolbar img {
2013-08-01 09:31:00 +02:00
height: 2em;
width: 2em;
2013-08-08 13:36:13 +02:00
}
.delete {
background-image: url("images/delete.svg");
background-position: left center;
background-repeat: no-repeat;
background-size: 32px;
padding-left: 32px;
text-decoration: none;
}
.confirm {
width: 14em;
margin: 0 auto;
text-align: center;
border: 2px solid #dfdfdf;
background-color: #dfdfdf;
border-radius: 0.2em;
padding: 1.2em;
}
2013-08-08 17:26:22 +02:00
.confirm > * {
color: #262626;
}
2013-08-08 13:36:13 +02:00
.confirm a {
padding: 0.5em 1em;
display: inline-block;
border-radius: 0.2em;
margin: 0 0.4em;
font-weight: bold;
2013-08-08 17:26:22 +02:00
text-decoration: none;
2013-08-08 13:36:13 +02:00
}
.confirm .valid {
2013-08-08 17:26:22 +02:00
background-color: #9bd840;
2013-08-08 13:36:13 +02:00
}
.confirm .cancel {
2013-08-08 17:26:22 +02:00
background-color: #e74638;
}
.error {
margin: 0 auto;
border: 2px solid red;
border-radius: 0.2em;
padding: 1.2em;
width: 40%;
2015-02-20 11:51:52 +01:00
text-align: center;
2013-07-26 13:56:19 +02:00
}