1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
@font-face {
font-family: Sansation;
src: url(Sansation_Regular.ttf);
}
html {
background-color: #FFFFFF;
}
body {
padding: 0px;
margin: 0px;
}
#header-wrapper {
margin: 1em;
}
#header {
background-color: #FFFFFF;
border: 0 none;
margin-bottom: 5px;
padding: 10px;
}
#logo {
background: url('../images/logo.png') no-repeat left center;
height: 36px;
font-size: 32px;
font-family: Sansation;
padding-left: 36px;
text-align: left;
}
#logo a {
font-style: normal;
color: #000000;
text-decoration: none;
}
header h1 {
display: block;
right: 0;
top: 0;
}
.strong {
font-weight: bold;
}
.subtitle {
font-size: 16px;
font-style: italic;
font-weight: bold;
color: #B0B0B0;
}
#main-wrapper {
padding: 1em 1em 6em 1em;
}
.icon {
position: relative;
text-decoration: none;
color: #f3f3f3;
font-size: 25px;
}
.icon:before {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-transform: none !important;
}
footer {
position: fixed;
left: 0px;
bottom: 0px;
height: 7em;
width: 100%;
margin: 5px;
background-color: #FFFFFF;
}
#social ul {
left: -4px;
margin: 0.1em;
overflow: hidden;
position: relative;
top: 4px;
padding: 0px;
}
#social ul li {
display: inline-block;
line-height: 4.5em;
padding-left: 1.5em;
}
#social ul li a {
background: none repeat scroll 0 0 #222222;
border-radius: 0.2em;
display: inline-block;
height: 1.5em;
line-height: 1.5em;
opacity: 0.75;
outline: 0 none;
text-align: center;
text-decoration: none;
transition: background-color 0.25s ease-in-out 0s;
width: 1.5em;
}
#social ul li a:hover {
background: #444444;
}
.icon>.label {
display: none;
}
article {
background-color: #EEEEEE;
border: 0 none;
border-radius: 5px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
color: #444444;
margin-bottom: 2em;
padding: 1em;
}
article h1 {
font-size: 1.75em;
font-weight: bold;
margin-bottom: 0;
}
article h4 {
font-size: 0.70em;
font-weight: bold;
font-style: italic;
margin-top: 2px;
}
article p {
line-height: 1.5em;
}
#copyright {
font-size: 0.70em;
padding-left: 1em;
}
|