This repository has been archived on 2020-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
plemp-node/public/stylesheets/style.css

127 lines
1.8 KiB
CSS

/* CSS style file for Plemp! */
body {
font-family: sans-serif;
}
pre {
margin: 0px 0px;
padding: 6px;
font-size: 12px;
}
#header {
position: relative;
border-bottom: thin solid gray;
height: 100%;
}
#header h1 {
margin: 5pt 0pt;
height: 20pt;
}
#header #title { float: left; }
#header #subtitle { font-size: 57%; }
#header #add {
float: right;
cursor: pointer;
color: #ccc;
}
#header #add:hover { color: #000; }
#add_dialog {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
text-align: center;
z-index: 999;
}
#add_dialog .background {
position: absolute;
top: 0px;
left: 0px;
z-index: 1000;
width: 100%;
height: 100%;
background: #ddd;
opacity: 0.8;
}
#add_dialog form {
z-index: 1001;
width: 500px;
height: 430px;
margin: 100px auto;
background: white;
border: thin solid black;
padding: 15px;
text-align: left;
position: relative;
}
#add_dialog #new_title { width: 300px; }
#add_dialog #type { float: right; }
.left { text-align: left; }
.right { text-align: right; }
.draggable {
position: absolute;
background: white;
border: thin solid #888;
padding: 10px;
width: 400px;
}
.draggable img,
.draggable audio,
.draggable video {
width: 100%;
}
.draggable pre {
font-size: 12px;
overflow: auto;
max-height: 300px;
}
.draggable h2 {
margin: 0px;
padding-bottom: 5px;
font-size: 11px;
}
.draggable h2 .title {
margin-right: 30px;
font-weight: bold;
overflow: hidden;
text-overflow: ellipsis;
}
.draggable h2 .title form input {
font-size: 11px;
font-weight: bold;
}
.draggable h2 .delete {
width: auto;
float: right;
padding: 0px 3px;
border: thin solid black;
color: #ccc;
}
.draggable h2 .delete:hover {
color: #000;
cursor: pointer;
}
.draggable .comments {
color: #999;
font-size: 11px;
padding-top: 5px;
}