1
0
mirror of https://github.com/balkian/balkian.github.com.git synced 2024-09-20 23:51:43 +00:00
balkian.github.com/theme/css/main-desktop.css

230 lines
3.3 KiB
CSS
Raw Normal View History

2013-08-22 23:57:31 +00:00
#badge{
2015-12-08 12:42:59 +00:00
height: 270px;
2013-08-22 23:57:31 +00:00
}
#container {
width: 1200px;
margin: 0 auto;
}
2019-01-08 17:22:33 +00:00
/* #contentwrapper { */
/* width: 1200px; */
/* position:relative; */
/* } */
2013-08-22 23:57:31 +00:00
2019-01-08 17:22:33 +00:00
/* #content { */
/* padding: 10px 30px; */
/* overflow: display; */
/* margin: 0; */
/* border-bottom: dashed 1px #DDD; */
/* } */
2013-08-22 23:57:31 +00:00
#content:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.date {
position: absolute;
right: -10px;
width: 10em;
text-align: center;
border-radius: 0px 0px 0px 15px;
2019-01-08 17:22:33 +00:00
border: solid #428bca;
2013-08-22 23:57:31 +00:00
padding: 0.5em;
font-weight: bold;
}
2015-12-07 22:12:27 +00:00
footer {
width: 102%;
margin-left: -1%;
}
2013-08-22 23:57:31 +00:00
h1 + .date {
margin-top: -3.5em;
}
h2 + .date {
margin-top: -2.5em;
}
.posthead {
margin-bottom: 1.5em;
}
.posthead h2, h1 {
margin-bottom: 0.5em;
}
header {
position: relative;
margin: 0;
padding: 0;
}
#navbar {
2014-04-08 11:08:47 +00:00
font-size: 1.2em;
2013-08-22 23:57:31 +00:00
padding-left: 300px;
}
.navbar ul {
list-style-type:none;
margin:0;
padding:0;
}
.navbar li {
display:inline;
text-align: center;
}
.navbar li.active a {
background-color: #F30;
color: white;
text-shadow: 0.1em 0.1em 0.1em black;
border-bottom: 1px solid #555;
}
.navbar li a {
text-decoration: none;
display: inline;
text-decoration: none;
font-weight: bold;
padding: 0.5em 1em;
}
.navbar li:first-child a {
border-left: 1px double #ccc;
}
.navbar li a:hover {
position: relative;
color: #000;
background-color: #fff;
2014-04-08 11:08:47 +00:00
text-shadow: 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
2013-08-22 23:57:31 +00:00
border-bottom: 1px solid #555;
z-index: 100;
}
.navbar li.active a:hover {
color: #c00;
}
.previouspost {
float: left;
}
@-webkit-keyframes toright {
from {
padding-left: 0px;
opacity: 0;
}
to {
padding-left: 150px;
opacity: 1;
}
}
@keyframes toright {
from {
padding-left: 0px;
opacity: 0;
}
to {
padding-left: 150px;
opacity: 1;
}
}
2015-01-22 22:05:35 +00:00
@-webkit-keyframes toleft {
to {
left: -10px;
opacity: 1;
}
from {
left: 300px;
opacity: 0;
}
}
@keyframes toleft {
to {
left: -10px;
opacity: 1;
}
from {
left: 300px;
opacity: 0;
}
}
2013-08-22 23:57:31 +00:00
@-webkit-keyframes appear{
to {
opacity: 1;
}
from {
opacity: 0;
}
}
@keyframes appear{
to {
opacity: 1;
}
from {
opacity: 0;
}
}
2015-01-22 22:05:35 +00:00
@-webkit-keyframes disappear{
to {
2015-01-22 22:18:18 +00:00
opacity: 0 ;
2015-01-22 22:05:35 +00:00
}
from {
opacity: 1;
}
}
@keyframes disappear{
to {
opacity: 0;
}
from {
opacity: 1;
}
}
2013-08-22 23:57:31 +00:00
#subheadline {
2015-01-22 22:05:35 +00:00
position: absolute;
-webkit-animation-name: toleft;
2015-01-22 22:19:37 +00:00
-webkit-animation-duration: 3s;
2013-08-22 23:57:31 +00:00
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
-webkit-animation-fill-mode: forwards;
2015-01-22 22:05:35 +00:00
animation-name: toleft;
2015-01-22 22:19:37 +00:00
animation-duration: 3s;
2013-08-22 23:57:31 +00:00
animation-iteration-count: 1;
animation-timing-function: linear;
animation-fill-mode: forwards;
}
.disappear {
2015-01-22 22:05:35 +00:00
-webkit-animation-name: disappear;
-webkit-animation-duration: 3s;
2013-08-22 23:57:31 +00:00
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: 1;
-webkit-animation-fill-mode: forwards;
2015-01-22 22:05:35 +00:00
animation-name: disappear;
animation-duration: 3s;
2013-08-22 23:57:31 +00:00
animation-iteration-count: 1;
animation-timing-function: linear;
animation-fill-mode: forwards;
}
code {
}