mirror of
https://github.com/fastmail/Squire.git
synced 2025-01-05 06:10:07 -05:00
Update: Header.html Added to the Demo
This commit is contained in:
parent
273577882c
commit
d2c64f9a81
2 changed files with 44 additions and 0 deletions
|
@ -79,6 +79,10 @@
|
||||||
<span id="redo">Redo</span>
|
<span id="redo">Redo</span>
|
||||||
</p>
|
</p>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<iframe src="build/header.html" width="500" height="80"></iframe>
|
||||||
<iframe src="build/document.html" onload="top.editor=this.contentWindow.editor" width="500" height="500"></iframe>
|
<iframe src="build/document.html" onload="top.editor=this.contentWindow.editor" width="500" height="500"></iframe>
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
40
ui/ui.css
40
ui/ui.css
|
@ -1 +1,41 @@
|
||||||
|
.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;
|
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 {
|
||||||
|
text-align:center;
|
||||||
|
-webkit-touch-callout:none;
|
||||||
|
-webkit-user-select:none;
|
||||||
|
-khtml-user-select:none;
|
||||||
|
-moz-user-select:none;
|
||||||
|
-ms-user-select:none;
|
||||||
|
user-select:none
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu .group .item:hover, .menu .item:first-child:hover {
|
||||||
|
border-left: 3px #55ACEE solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu .item:first-child {
|
||||||
|
border-left:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue