1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2024-11-23 00:33:44 +00:00
kamokan/html/website/kamokan.css

152 lines
2 KiB
CSS
Raw Normal View History

2017-04-18 19:09:49 +00:00
2017-06-14 23:06:47 +00:00
html {
2017-06-18 15:23:43 +00:00
margin: 0px;
padding: 0px;
2017-08-07 23:06:51 +00:00
min-width: 100%;
2017-04-18 19:09:49 +00:00
}
body {
font-family: Helvetica, Arial, sans-serif;
background: #303030;
2017-06-18 15:23:43 +00:00
margin: 0px;
padding-top: 0px;
2017-08-07 23:06:51 +00:00
min-width: 100%;
2017-04-18 19:09:49 +00:00
}
/*style della barra di navigazione*/
#topbar {
margin: 0;
padding: 0;
width: 100%;
border-bottom: 2px solid black;
}
2017-05-14 13:50:16 +00:00
#content {
margin: 0;
padding: 0;
width: 100%;
2017-06-14 23:06:47 +00:00
}
2017-06-18 15:23:43 +00:00
#page {
margin: 10px;
2017-05-14 13:50:16 +00:00
}
2017-04-18 19:09:49 +00:00
#version{
margin: 0px;
2017-05-14 13:50:16 +00:00
padding: 0px 0px;
2017-06-18 15:23:43 +00:00
color: RGBA(0, 242, 0, 1);
2017-04-18 19:09:49 +00:00
font-weight: bold;
2017-06-14 23:06:47 +00:00
font-size: 17px;
}
.submit-mobile {
display: none;
2017-04-18 19:09:49 +00:00
}
.icon {
padding-right: 20px;
}
.icon-right {
float: right;
2017-06-21 07:18:49 +00:00
width: 95%;
2017-04-18 19:09:49 +00:00
}
2017-06-18 15:23:43 +00:00
.wrap {
margin: 20px;
2017-06-21 07:18:49 +00:00
width: 95%;
2017-08-07 23:06:51 +00:00
min-height: calc(90vh - 100px);
2017-06-18 15:23:43 +00:00
}
#PasteTextBox {
2017-04-18 19:09:49 +00:00
background-color: #303030;
color: #EDEDED;
resize: none;
2017-08-07 23:06:51 +00:00
height: calc(80vh - 200px);
2017-06-18 15:23:43 +00:00
width: 95%;
}
#button {
margin: 0px 20px 20px 20px;
2017-04-18 19:09:49 +00:00
}
.title{
display: inline-block;
color: #EDEDED;
font-weight: bold;
2017-06-18 15:23:43 +00:00
font-size: 17px;
}
#delete {
font-size: 17px;
color: #EDEDED;
display: inline;
2017-04-18 19:09:49 +00:00
}
.selectBox {
font-size: 15px;
background: #EDEDED;
color: black;
padding: 5px;
margin-right: 20px;
border: solid #9e9e9e 1px;
text-decoration: none;
2017-05-14 13:50:16 +00:00
display: inline-block;
2017-04-18 19:09:49 +00:00
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
2017-05-14 13:50:16 +00:00
.error {
font-size: 28px;
text-align: center;
2017-06-18 15:23:43 +00:00
}
footer {
2017-08-07 23:06:51 +00:00
padding-left: 30px;
position: relative;
2017-06-18 15:23:43 +00:00
font-size: 15px;
color: #EDEDED;
2017-08-07 23:06:51 +00:00
width: calc(100% - 200px);
2017-06-18 15:23:43 +00:00
}
#numbers {
display: table-cell;
color: #EDEDED;
font-family: monospace;
width: 40px;
2017-06-21 07:18:49 +00:00
user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
2017-06-18 15:23:43 +00:00
}
#lines {
display: table-cell;
font-family: monospace;
}
#code {
list-style-type: none;
padding: 0px;
margin: 0px;
2017-06-21 07:18:49 +00:00
width: 100%;
2017-06-18 15:23:43 +00:00
white-space: pre;
2017-06-21 07:18:49 +00:00
word-wrap: break-word;
}
#message {
color: #EDEDED;
font-size: 22px;
text-align: center;
}
.link {
color: RGBA(0, 242, 0, 1);
2017-06-18 15:23:43 +00:00
}
.mar-pad0 {
margin: 0px;
padding: 0px;
2017-06-21 07:18:49 +00:00
}