This repository has been archived on 2022-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
morse-converter-web/res/css/main.css

161 lines
2.8 KiB
CSS
Raw Normal View History

2015-04-01 19:23:40 +02:00
body {
font-family: "Roboto", sans-serif;
background: #f4f4f4;
margin: 0px; }
2015-04-01 11:37:48 +02:00
2015-04-01 19:23:40 +02:00
.actionbar {
width: 100%;
height: 60px;
position: fixed;
background: #03a9f4;
top: 0px;
left: 0px;
2015-04-02 10:46:06 +02:00
padding-left: 320px;
2015-04-01 19:23:40 +02:00
color: #fff;
font-size: 25px;
line-height: 60px;
2015-04-02 10:46:06 +02:00
-webkit-box-shadow: 0px 4px 4px 0px #999;
-moz-box-shadow: 0px 4px 4px 0px #999;
-ms-box-shadow: 0px 4px 4px 0px #999;
box-shadow: 0px 4px 4px 0px #999; }
.menuicon {
height: 30px;
position: fixed;
top: 0px;
left: 0px;
padding: 15px;
cursor: pointer; }
2015-04-01 11:37:48 +02:00
2015-04-01 19:23:40 +02:00
.drawer {
2015-04-02 10:46:06 +02:00
width: 300px;
2015-04-01 19:23:40 +02:00
top: 0px;
left: 0px;
position: absolute;
height: 100%;
background: #fff;
border-right-width: 1px;
border-right-color: #cecece;
2015-04-02 10:46:06 +02:00
border-right-style: solid;
2015-04-08 02:34:44 +02:00
z-index: 50;
font-weight: 500; }
2015-04-01 11:37:48 +02:00
2015-04-01 19:23:40 +02:00
.drawerimg {
width: 100%; }
2015-04-01 11:37:48 +02:00
2015-04-08 02:34:44 +02:00
.draweritem, .draweritembottom {
height: 58px;
line-height: 58px;
2015-04-01 19:23:40 +02:00
font-size: 18px;
padding-left: 16px;
cursor: pointer; }
2015-04-01 11:37:48 +02:00
2015-04-08 02:34:44 +02:00
.draweritembottom {
bottom: 0px;
position: absolute;
width: calc(100% - 16px); }
2015-04-01 11:37:48 +02:00
2015-04-08 02:34:44 +02:00
.drawerdivider, .drawerdividerbottom, .carddivider {
2015-04-01 19:23:40 +02:00
border-top-color: #cecece;
border-top-width: 1px;
border-top-style: solid; }
2015-04-01 11:37:48 +02:00
2015-04-08 02:34:44 +02:00
.drawerdividerbottom {
bottom: 60px;
position: absolute;
width: 100%; }
2015-04-01 19:23:40 +02:00
.main {
2015-04-02 10:46:06 +02:00
width: calc(100% - 300px);
height: calc(100%-60px);
margin-left: 300px;
2015-04-01 19:23:40 +02:00
margin-top: 60px; }
2015-04-01 11:37:48 +02:00
2015-04-01 19:23:40 +02:00
.card {
width: calc(50% - 36px);
background: #fff;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
-ms-border-radius: 1px;
border-radius: 1px;
-webkit-box-shadow: 0px 0px 2px 2px #cecece;
-moz-box-shadow: 0px 0px 2px 2px #cecece;
-ms-box-shadow: 0px 0px 2px 2px #cecece;
box-shadow: 0px 0px 2px 2px #cecece;
display: inline-block;
margin: 16px;
2015-04-16 22:30:23 +02:00
float: left;
height: auto; }
2015-04-01 11:37:48 +02:00
2015-04-01 19:23:40 +02:00
.input {
width: 100%;
resize: none;
border: 0px;
2015-04-16 22:30:23 +02:00
height: auto;
min-height: 100px;
2015-04-01 19:23:40 +02:00
font-family: "Roboto", sans-serif;
font-size: 16px;
2015-04-16 22:30:23 +02:00
padding: 20px;
clear: both; }
2015-04-01 11:37:48 +02:00
2015-04-01 19:23:40 +02:00
.carddivider {
width: 100%; }
2015-04-01 11:37:48 +02:00
2015-04-01 19:23:40 +02:00
.cardtext {
padding: 20px; }
2015-04-01 11:37:48 +02:00
2015-04-01 19:23:40 +02:00
.cardbuttons {
float: right;
padding: 20px; }
2015-04-01 11:37:48 +02:00
2015-04-01 19:23:40 +02:00
.cardbutton {
min-width: 64px;
margin-left: 8px;
2015-04-02 10:46:06 +02:00
padding: 5px;
color: #03a9f4;
cursor: pointer; }
2015-04-01 19:23:40 +02:00
2015-04-02 10:46:06 +02:00
.overlay {
background: #000;
opacity: 0;
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
z-index: 30; }
#output {
-moz-hyphens: auto;
-ms-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
word-wrap: break-word; }
#outputcard {
display: none; }
2015-04-08 02:34:44 +02:00
#writtenmorse {
color: #03a9f4; }
2015-04-16 23:55:24 +02:00
.version {
font-style: italic;
font-size: 20px; }
2015-04-02 10:46:06 +02:00
@media screen and (max-width: 1400px) {
.drawer {
display: none;
border-right-width: 0px; }
.actionbar {
padding-left: 60px; }
.main {
width: 100%;
margin-left: 0px; } }
@media screen and (max-width: 750px) {
.card {
width: calc(100% - 36px); } }
2015-04-01 19:23:40 +02:00
/*# sourceMappingURL=main.css.map */