62 lines
923 B
CSS
62 lines
923 B
CSS
body, input, textarea, select{
|
|
font-family: 'Open Sans', sans-serif;
|
|
line-height: 1.8em;
|
|
color: #010101;
|
|
font-weight: 300;
|
|
}
|
|
|
|
/* Wrappers */
|
|
|
|
.wrapper {
|
|
box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.15), inset 0px 2px 3px 0px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.wrapper.style1 {
|
|
background-color: #fff;
|
|
padding-top: 30px;
|
|
}
|
|
|
|
.wrapper.style2 {
|
|
background-color: #fafafa;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.wrapper.style3 {
|
|
background-color: #f4f4f4;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
|
|
#nav {
|
|
background-color: #282828;
|
|
text-align: center;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: 10000;
|
|
cursor: default;
|
|
}
|
|
|
|
#nav ul {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
#nav li {
|
|
display: inline-block;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
#nav a {
|
|
position: relative;
|
|
display: block;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
outline: 0;
|
|
}
|
|
|
|
|
|
|