haste-server/static/application.css

179 lines
3.2 KiB
CSS
Raw Normal View History

2011-11-18 23:23:23 +01:00
body {
2020-07-15 17:17:26 +02:00
background: #fcfcfc;
padding: 20px 50px;
margin: 0px;
2011-11-18 23:23:23 +01:00
}
2011-11-19 00:17:49 +01:00
/* textarea */
2011-11-28 15:56:06 +01:00
textarea {
background: transparent;
border: 0px;
2020-07-15 17:17:26 +02:00
color: #000;
padding: 0px;
width: 100%;
height: 100%;
font-family: monospace;
outline: none;
resize: none;
font-size: 13px;
2011-11-18 23:23:23 +01:00
}
2011-11-19 00:17:49 +01:00
/* the line numbers */
#linenos {
2019-07-17 13:08:49 +02:00
color: #7d7d7d;
z-index: -1000;
position: absolute;
2020-07-16 13:55:37 +02:00
/* top: 20px; */
left: 0px;
width: 30px; /* 30 to get 20 away from box */
font-size: 13px;
font-family: monospace;
text-align: right;
}
/* code box when locked */
2011-11-28 15:56:06 +01:00
#box {
padding: 0px;
margin: 0px;
width: 100%;
border: 0px;
outline: none;
font-size: 13px;
2019-07-17 13:08:49 +02:00
overflow: inherit;
2020-07-15 17:17:26 +02:00
background: #fcfcfc;
2011-11-18 23:23:23 +01:00
}
2011-11-19 00:17:49 +01:00
#box code {
padding: 0px;
background: transparent !important; /* don't hide hastebox */
2011-11-19 00:17:49 +01:00
}
/* key */
2011-11-28 15:56:06 +01:00
#key {
2020-07-16 13:55:37 +02:00
display: flex;
justify-content: space-between;
width: 100%;
position: sticky;
flex-wrap: row;
2011-11-23 17:31:50 +01:00
}
#box1 {
padding: 5px;
text-align: center;
2020-07-15 17:17:26 +02:00
background: #fcfcfc;
2011-11-23 17:31:50 +01:00
}
#box2 {
2020-07-16 13:55:37 +02:00
display: flex;
justify-content: right;
2020-07-15 17:17:26 +02:00
background: #fcfcfc;
font-size: 0px;
padding: 0px 5px;
2011-11-23 17:31:50 +01:00
}
2020-07-16 13:55:37 +02:00
a.logo, a.logo:visited {
display: inline-block;
background: url(logo.png);
width: 126px;
2020-07-16 13:55:37 +02:00
min-width: 126px;
height: 42px;
2011-11-23 17:31:50 +01:00
}
2020-07-16 13:55:37 +02:00
a.logo:hover {
background-position: 0 bottom;
2011-11-23 17:31:50 +01:00
}
#box2 .function {
background: url(function-icons.png);
width: 32px;
height: 37px;
display: inline-block;
position: relative;
2011-11-19 00:17:49 +01:00
}
#box2 .link embed {
vertical-align: bottom; /* fix for zeroClipboard style */
2011-11-27 21:34:09 +01:00
}
#box2 .function.enabled:hover {
cursor: hand;
cursor: pointer;
2011-11-18 23:23:23 +01:00
}
2011-11-23 17:31:50 +01:00
#pointer {
display: block;
height: 5px;
width: 10px;
background: url(hover-dropdown-tip.png);
bottom: 0px;
position: absolute;
margin: auto;
left: 0px;
right: 0px;
2011-11-28 15:39:31 +01:00
}
#box3, #messages li {
2020-07-16 13:55:37 +02:00
position: absolute;
right: 100px;
2020-07-15 17:17:26 +02:00
background: #fcfcfc;
font-family: Helvetica, sans-serif;
font-size: 12px;
line-height: 14px;
padding: 10px 15px;
2011-11-23 17:31:50 +01:00
}
2020-07-16 13:55:37 +02:00
#box3 .label {
color: #000;
font-weight: bold;
2011-11-23 17:31:50 +01:00
}
2020-07-16 13:55:37 +02:00
#messages li {
color: #FFF;
right: 50px;
}
#box3 .shortcut {
color: #c4dce3;
font-weight: normal;
2011-11-23 17:31:50 +01:00
}
#box2 .function.save { background-position: -5px top; }
#box2 .function.enabled.save { background-position: -5px center; }
#box2 .function.enabled.save:hover { background-position: -5px bottom; }
2011-11-23 17:31:50 +01:00
#box2 .function.new { background-position: -42px top; }
#box2 .function.enabled.new { background-position: -42px center; }
#box2 .function.enabled.new:hover { background-position: -42px bottom; }
2011-11-23 17:31:50 +01:00
#box2 .function.duplicate { background-position: -79px top; }
#box2 .function.enabled.duplicate { background-position: -79px center; }
#box2 .function.enabled.duplicate:hover { background-position: -79px bottom; }
2011-11-23 17:31:50 +01:00
#box2 .function.raw { background-position: -116px top; }
#box2 .function.enabled.raw { background-position: -116px center; }
#box2 .function.enabled.raw:hover { background-position: -116px bottom; }
2011-11-23 17:31:50 +01:00
#box2 .function.twitter { background-position: -153px top; }
#box2 .function.enabled.twitter { background-position: -153px center; }
#box2 .function.enabled.twitter:hover { background-position: -153px bottom; }
2016-07-30 16:15:53 +02:00
#box2 .button-picture{ border-width: 0; font-size: inherit; }
2011-12-19 18:44:12 +01:00
#messages {
margin:0;
padding:0;
2011-12-19 18:44:12 +01:00
}
#messages li {
2020-07-15 17:17:26 +02:00
background:rgba(252,252,252,0.8);
margin:0 auto;
list-style:none;
2011-12-19 18:44:12 +01:00
}
#messages li.error {
background:rgba(102,8,0,0.8);
2011-12-19 18:44:12 +01:00
}
2016-07-30 16:15:53 +02:00