support/misc: Adding Vagrant file for provisioning
[buildroot-gz.git] / docs / website / css / main.css
blobdb9c4c90deb4c290420c7b56732cab2c0882d521
1 /*
2 * Author: Carlos Alvarez
3 * URL: http://alvarez.is
5 * Project Name: FLATTY - Free Bootstrap 3 Theme
6 * Version: 1.0
7 * URL: http://blacktie.co
8 */
10 body {
11 background-color: #f2f2f2;
12 font-family: 'Roboto', sans-serif;
13 font-weight: 300;
14 font-size: 16px;
15 color: #555;
17 -webkit-font-smoothing: antialiased;
18 -webkit-overflow-scrolling: touch;
21 /* Titles */
22 h1, h2, h3, h4, h5, h6 {
23 font-family: 'Roboto', sans-serif;
24 font-weight: 300;
25 color: #333;
28 h1 {
29 font-size: 40px;
32 h3 {
33 color: #95a5a6;
34 font-weight: 400;
37 h4 {
38 color: #95a5a6;
39 font-weight: 400;
40 font-size: 20px;
43 .ellipsis p {
44 margin-bottom:10px;
45 white-space: nowrap;
46 overflow: hidden;
47 text-overflow: ellipsis;
50 .centered {
51 text-align: center;
54 /* Links */
55 a {
56 color: #3498db;
57 word-wrap: break-word;
59 -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
60 -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
61 -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
62 -o-transition: color 0.1s ease-in, background 0.1s ease-in;
63 transition: color 0.1s ease-in, background 0.1s ease-in;
66 a:hover,
67 a:focus {
68 color: #7b7b7b;
69 text-decoration: none;
70 outline: 0;
73 a:before,
74 a:after {
75 -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
76 -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
77 -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
78 -o-transition: color 0.1s ease-in, background 0.1s ease-in;
79 transition: color 0.1s ease-in, background 0.1s ease-in;
82 hr {
83 display: block;
84 height: 1px;
85 border: 0;
86 border-top: 1px solid #ccc;
87 margin: 1em 0;
88 padding: 0;
91 .navbar-default {
92 background-color: #3498db;
93 border-color: transparent;
96 .navbar-default .navbar-brand {
97 color: white;
100 .navbar-default .navbar-nav > li > a {
101 color: white;
104 /* Helpers */
106 .mt {
107 margin-top: 40px;
108 margin-bottom: 40px;
111 .nh {
112 margin-top: 80px;
113 margin-bottom: 40px;
116 .form-control {
117 height: 42px;
118 font-size: 18px;
119 width: 280px;
123 margin: 8px;
124 color: #3498db;
128 /* HeaderWrap */
129 #headerwrap {
130 /* background: url(../img/bg01.jpg) no-repeat center top; */
131 background-color: #3498db;
132 margin-top: -20px;
133 padding-top:120px;
134 background-attachment: relative;
135 background-position: center center;
136 min-height: 400px;
137 max-height: 800px;
138 width: 100%;
140 -webkit-background-size: 100%;
141 -moz-background-size: 100%;
142 -o-background-size: 100%;
143 background-size: 100%;
145 -webkit-background-size: cover;
146 -moz-background-size: cover;
147 -o-background-size: cover;
148 background-size: cover;
151 #headerwrap h1 {
152 color: white;
153 font-size: 60px;
154 font-weight: bold;
155 letter-spacing: 1px;
158 #menubutton {
159 max-height: 50px;
160 margin-top: 6px;
161 padding-top: 15px;
162 margin-left: 10px;
165 .panel-sponsor {
166 min-height: 300px;
167 text-align: justify;
168 text-justify: inter-word;
171 @media (min-width: 768px) and (max-width: 991px) {
172 .navbar-collapse.collapse {
173 display: none !important;
175 .navbar-collapse.collapse.in {
176 display: block !important;
178 .navbar-header .collapse, .navbar-toggle {
179 display:block !important;
181 .navbar-header {
182 float:none;
184 .navbar-collapse {
185 overflow:hidden;
187 #menubutton {
188 margin-right: 40px;
189 width: 45px;
191 .text-shrink {
192 visibility: hidden;
196 @media (max-width:767px) {
197 #menubutton {
198 max-height: 50px;
199 margin-top: 6px;
200 padding-top: 15px;
201 margin-left: 15px;
202 margin-right: 15px;
206 /* entire container, keeps perspective */
207 .flip-container {
208 perspective: 1000;
210 /* flip the pane when hovered */
211 .flip-container:hover .flipper, .flip-container.hover .flipper {
212 transform: rotateY(180deg);
215 .flip-container, .front, .back {
216 width: 180px;
217 height: 180px;
220 /* flip speed goes here */
221 .flipper {
222 transition: 0.6s;
223 transform-style: preserve-3d;
225 position: relative;
228 /* hide back of pane during swap */
229 .front, .back {
230 backface-visibility: hidden;
232 position: absolute;
233 top: 0;
234 left: 0;
237 /* front pane, placed above back */
238 .front {
239 z-index: 2;
240 /* for firefox 31 */
241 transform: rotateY(0deg);
244 /* back, initially hidden pane */
245 .back {
246 transform: rotateY(180deg);
249 .back img {
250 -moz-transform: scaleX(-1);
251 -o-transform: scaleX(-1);
252 -webkit-transform: scaleX(-1);
253 transform: scaleX(-1);
254 filter: FlipH;
255 -ms-filter: "FlipH";
258 .panel-box p {
259 height: 1.5em;