aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Code/Blocks/Flipboard/css/demo.css')
-rw-r--r--Code/Blocks/Flipboard/css/demo.css49
1 files changed, 49 insertions, 0 deletions
diff --git a/Code/Blocks/Flipboard/css/demo.css b/Code/Blocks/Flipboard/css/demo.css
new file mode 100644
index 0000000..2bf1e5b
--- /dev/null
+++ b/Code/Blocks/Flipboard/css/demo.css
@@ -0,0 +1,49 @@
1/* @import url('normalize.css'); */
2/* General Demo Style */
3*{
4 -webkit-box-sizing: border-box;
5 -moz-box-sizing: border-box;
6 box-sizing: border-box;
7}
8body{
9 font-family: 'Open Sans Condensed','Arial Narrow', serif;
10 background: #ddd url(../images/fabric_plaid.png) repeat top left;
11 font-weight: 400;
12 font-size: 15px;
13 color: #333;
14 -webkit-font-smoothing: antialiased;
15 -moz-font-smoothing: antialiased;
16 font-smoothing: antialiased;
17 margin: 0;
18 overflow: hidden;
19}
20a{
21 color: #555;
22 text-decoration: none;
23}
24.clr{
25 clear: both;
26 padding: 0;
27 height: 0;
28 margin: 0;
29}
30.main-title{
31 position: absolute;
32 z-index: -1;
33 width: 50%;
34 padding: 20px 40px;
35 text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.7);
36}
37.main-title h1{
38 font-size: 45px;
39 line-height: 52px;
40 font-weight: 300;
41 color: #777;
42}
43.main-title h1 strong{
44 font-weight: 700;
45}
46.main-title p{
47 font-size: 18px;
48 color: #F86738;
49} \ No newline at end of file
Powered by cgit v1.2.3 (git 2.41.0)