-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo-only.css
More file actions
150 lines (134 loc) · 2.48 KB
/
demo-only.css
File metadata and controls
150 lines (134 loc) · 2.48 KB
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
/* Project: Simple Image Zoomer.
* Author: Asif Mughal
* URL: www.codehim.com
* License: MIT License
* Copyright (c) 2018 - Asif Mughal
*/
/* FILE : demo-only.css */
*{ margin: 0; padding: 0;}
@font-face {
src: local('Helvetica Neue'), local('HelveticaNeue'), url(http://themes.googleusercontent.com/licensed/font?kit=Lx1xfUTR4qFjwg0Z_pb900DGSpWewu0sZH-jqLz8Q00) format('truetype');
}
body{
font-family: 'Helvetica Neue';
font-style: normal;
font-weight: 300;
font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 15px;
}
.intro,
article{
padding: 10px;
line-height: 1.5;
}
.intro p{
text-align: center;
font-size: 14px;
}
article li{
margin-left: 30px;
padding: 10px 5px;
}
article p{
color: #444;
font-size: 14px;
}
pre{
background: #333;
color: #ccc;
overflow: scroll;
font-size: 13px;
}
pre,
p{
padding: 10px;
margin: 10px;
}
.codehim-header {
position: relative;
height: 300px;
background: #eee;
}
.codehim-header h1 {
text-align: center;
margin-top: 50px;
color: #444;
font-size: 20pt;
}
.codehim-header .polygon {
position: absolute;
bottom: 0;
width: 100%;
height: 10vw;
box-sizing: border-box;
margin-left: -10px;
}
.action{
text-align: center;
display: block;
margin-top: 20px;
}
a.btn {
text-decoration: none;
color: #666;
border: 2px solid #666;
padding: 10px 15px;
display: inline-block;
margin-left: 5px;
}
a.btn:hover{
background: #666;
color: #fff;
transition: .3s;
-webkit-transition: .3s;
}
article h2 {
padding: 10px;
font-size: 18pt;
}
@media only screen and (min-width: 720px){
article{
width: 720px;
margin-left: auto;
margin-right: auto;
background: #f9f9f9;
}
}
.credit{
background: #f2f2f2;
padding: 12px;
font-size: 9pt;
text-align: center;
color: #333;
margin-top: 40px;
}
.credit span{
color: #e41b17;
}
.credit a{
color: #333;
text-decoration: none;
}
.credit a:hover{
color: #16a075;
}
.theme-tray {
overflow: hidden;
background: #fff;
}
.theme-tray span {
width: 50px;
height: 50px;
display: inline-block;
cursor: pointer;
position: relative;
z-index: 110;
border-radius: 50%;
}
code{
border:1px solid #ddd;
padding: 3px;
border-radius: 2px;
}