mirror of
https://github.com/fastmail/Squire.git
synced 2024-12-22 23:40:35 -05:00
79 lines
No EOL
1.4 KiB
CSS
79 lines
No EOL
1.4 KiB
CSS
body {
|
|
position: relative;
|
|
margin: 0 auto;
|
|
padding: 50px;
|
|
width: 540px;
|
|
font: 400 14px/1.24 helvetica, arial, sans-serif;
|
|
text-shadow: 0 1px 0 white;
|
|
}
|
|
|
|
iframe {
|
|
width: 100%;
|
|
border: 1px #919191 solid;
|
|
border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
padding: 7px 8px;
|
|
color: #333;
|
|
background-color: #fff;
|
|
background-repeat: no-repeat;
|
|
background-position: right center;
|
|
border: 1px solid #ccc;
|
|
border-radius: 3px;
|
|
outline: none;
|
|
box-shadow: inset 0 1px 2px rgba(0,0,0,0.075);
|
|
}
|
|
|
|
.menu .item {
|
|
color:#000;
|
|
float:left;
|
|
background:#FFF;
|
|
padding:10px;
|
|
border-left:1px #EEE solid;
|
|
-webkit-font-smoothing:subpixel-antialiased
|
|
}
|
|
|
|
.menu .group {
|
|
border-radius:3px;
|
|
display:inline-block;
|
|
border:1px #EEE solid;
|
|
margin:5px
|
|
}
|
|
|
|
.menu .group .item .flip {
|
|
-ms-transform:rotateY(180deg);
|
|
-webkit-transform:rotateY(180deg);
|
|
-moz-transform:rotateY(180deg);
|
|
transform:rotateY(180deg)
|
|
}
|
|
|
|
|
|
|
|
.menu .group .item:hover, .menu .item:first-child:hover {
|
|
border-left: 3px #55ACEE solid;
|
|
}
|
|
|
|
.menu .item:first-child {
|
|
border-left:none;
|
|
}
|
|
|
|
.drop {
|
|
border: 1px solid #dbdbdb;
|
|
padding: 14px;
|
|
background: white;
|
|
box-shadow: 0 1px 0 rgba(255,255,255,0),0 0 10px rgba(0,0,0,0.1);
|
|
-webkit-border-radius: 4px;
|
|
border-radius: 4px;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.quit {
|
|
float: right;
|
|
top:0;
|
|
right:0;
|
|
}
|
|
|
|
|