added tabs
This commit is contained in:
parent
44136da5f7
commit
b1aa6f1887
@ -8,9 +8,11 @@ html {
|
||||
}
|
||||
|
||||
body {
|
||||
background-image: url("./resources/static/light.png");
|
||||
overflow-x: hidden;
|
||||
font-family: Oswald;
|
||||
font-size: 100%;
|
||||
margin: 0;
|
||||
|
||||
-webkit-transition: background-image ease-in 0.5s;
|
||||
-moz-transition: background-image ease-in 0.5s;
|
||||
@ -18,3 +20,79 @@ body {
|
||||
transition: background-image ease-in 0.5s;
|
||||
}
|
||||
|
||||
td {
|
||||
min-width:35px;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.tDesc {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
font-size: 150%;
|
||||
}
|
||||
|
||||
.pulltab {
|
||||
position: fixed;
|
||||
margin-left: -6%;
|
||||
padding: 0.5%;
|
||||
width: 8%;
|
||||
height: 4%;
|
||||
background-color: #b3daff;
|
||||
color: rgba(0,0,0,0);
|
||||
box-shadow: 2px 2px 5px 3px #444;
|
||||
|
||||
-webkit-transition: transform 0.2s ease, margin 0.3s ease, color 0.4s ease;
|
||||
-moz-transition: transform 0.2s ease, margin 0.3s ease, color 0.4s ease;
|
||||
-ms-transition: transform 0.2s ease, margin 0.3s ease ,color 0.4s ease;
|
||||
transition: transform 0.2s ease, margin 0.3s ease, color 0.4s ease;
|
||||
}
|
||||
|
||||
.pulltab:hover {
|
||||
margin-left: 0%;
|
||||
color: rgba(0,0,0,1)
|
||||
}
|
||||
|
||||
.first {
|
||||
margin-top:5%;
|
||||
|
||||
}
|
||||
.second {
|
||||
margin-top: 12%;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
position: absolute;
|
||||
background-color: #e6f5ff;
|
||||
margin-left: -60%;
|
||||
padding: 15px 20px 15px 15px;
|
||||
box-shadow: 2px 2px 5px 3px #444;
|
||||
z-index:10;
|
||||
|
||||
-webkit-transition: margin 0.5s ease;
|
||||
-moz-transition: margin 0.5s ease;
|
||||
-ms-transition: margin 0.5s ease;
|
||||
transition: margin 0.5s ease;
|
||||
}
|
||||
|
||||
.0 {
|
||||
max-height: 40%;
|
||||
}
|
||||
.1 {
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
.fa {
|
||||
float: right;
|
||||
font-size: 250% !important;
|
||||
color: #585858;
|
||||
|
||||
-webkit-transition: color 0.5s ease;
|
||||
-moz-transition: color 0.5s ease;
|
||||
-ms-transition: color 0.5s ease;
|
||||
transition: color 0.5s ease;
|
||||
}
|
||||
|
||||
.fa:hover {
|
||||
color: #FF746B;
|
||||
}
|
||||
@ -5,14 +5,22 @@
|
||||
<title>Atoms</title>
|
||||
<link rel="icon" href="./resources/static/favicon.ico">
|
||||
<link rel="stylesheet" href="./index.css">
|
||||
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||
</head>
|
||||
<body>
|
||||
<div class="pulltab1"></div>
|
||||
<div class="table"></div>
|
||||
<div class="settings"></div>
|
||||
<h1 class="desc">Background Theme</h1><h1 id="bg">Light</h1>
|
||||
<div class="pulltab2"></div>
|
||||
<div class="pulltab first"><p class="tDesc">Elements</p></div>
|
||||
<div class="sidebar 0">
|
||||
<i class="fa fa-close"></i>
|
||||
<tr>
|
||||
</div>
|
||||
|
||||
<div class="pulltab second"><p class="tDesc">Settings</p></div>
|
||||
<div class="sidebar 1">
|
||||
<i class="fa fa-close"></i>
|
||||
<p class="desc">Background Theme</p><p id="bg">Light</p>
|
||||
</div>
|
||||
|
||||
<div class="workspace"></div>
|
||||
</body>
|
||||
<script src="./index.js"></script>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user