Welcome to mirror list, hosted at ThFree Co, Russian Federation.

style.css « css « demo - github.com/CSS-Tricks/The-Printliminator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0616b30fe1dd3408a8092b7d24172cc53bc383a7 (plain)
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
/*
CSS-Tricks Example
by Chris Coyier
http://css-tricks.com
*/

* {
    margin: 0;
    padding: 0;
}
body {
    font: 20px/1.6 Georgia, serif;
    overflow-x: hidden;
}
#frame {
    margin: 3px 0 0 1px;
}
#page-wrap {
    width: 570px;
    margin: 25px auto;
}
h1 {
    font: bold 50px Helvetica, sans-serif;
    letter-spacing: -2px;
    margin: 0 0 15px 0;
}
#dev-mode {
    margin-left: 20px;
    vertical-align: middle;
    font-size: 20px;
    color: red;
}
p {
    margin: 0 0 15px 0;
}
.bookmarklet {
    text-decoration: none;
    background: black;
    color: white;
    padding: 8px 20px;
    margin-top: 4px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}
iframe, .drag-arrow {
    font-size: 14px;
    vertical-align: middle;
}
.drag-arrow strong {
    font-size: 20px;
}
h2 {
    font: bold 32px Helvetica, sans-serif;
    letter-spacing: -2px;
    margin: 40px 0 10px 0;
}
#demo-top-bar {
    text-align: left;
    background: #222;
    position: relative;
    zoom: 1;
    width: 100% !important;
    z-index: 6000;
    padding: 20px 0 20px;
}
#demo-bar-inside {
    width: 960px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
#demo-bar-buttons {
    padding-top: 10px;
    float: right;
}
#demo-bar-buttons a {
    font-size: 12px;
    margin-left: 20px;
    color: white;
    margin: 2px 0;
    text-decoration: none;
    font: 14px "Lucida Grande", Sans-Serif !important;
}
#demo-bar-buttons a:hover,
#demo-bar-buttons a:focus {
    text-decoration: underline;
}
#demo-bar-badge {
    display: inline-block;
    width: 302px;
    padding: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
}
#demo-bar-badge a {
    display: block;
    width: 100%;
    height: 38px;
    border-radius: 0;
    bottom: auto;
    margin: 0;
    background: url(../images/examples-logo.png) no-repeat;
    background-size: 100%;
    overflow: hidden;
    text-indent: -9999px;
}
#demo-bar-badge:before,
#demo-bar-badge:after {
    display: none !important;
}