-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpin.css
More file actions
126 lines (115 loc) · 2.49 KB
/
pin.css
File metadata and controls
126 lines (115 loc) · 2.49 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
body {
font-size: 1em;
line-height: 1.4;
height:2500px;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: "Trebuchet MS", sans-serif; }
@media print {
.page-break {
page-break-after: always;
margin-bottom: 0;
}
}
@media (min-width: 768px) {
.cols { -webkit-column-count: 2; -moz-column-count: 2; column-count: 2; }
}
@media (min-width: 1200px) {
.cols { -webkit-column-count: 3; -moz-column-count: 3; column-count: 3; }
}
.thumbnails {
margin-bottom: 20px;
}
.thumbnail {
padding: 0;
font-family: sans-serif;
font-size: 12px;
}
.thumbnail:hover {
text-decoration: none;
}
.thumbnail h3 {
padding: 0 10px;
color: #666;
margin-top: 1em;
font-size: 16px;
line-height: 1;
white-space: nowrap;
}
.thumbnail p {
padding: 0 10px;
margin-top: 1em;
font-family: sans-serif;
line-height: 1.3;
color: #222;
}
.demo { width:200px; height:300px; margin:0 12px 12px 0; position: relative; }
a:link, a:hover, a:visited {
color: #252f4d;
list-style-type: square;
}
#nav {
bottom:0;
width: 16%;
overflow-y: auto;
}
.menu1-container, .menu2-container{
padding: 4px 12px;
text-transform: capitalize;
}
.menu2-search{
background: url('Search-icon.png') no-repeat scroll 4px;
background-size: 15px 15px;
padding: 6px;
width:90%;
max-width:150px;
padding-left:20px;
border: 1px solid #CCC;
border-radius: 6px;
}
#list li {
float: left;
display: inline-block;
}
.menu3-container li a:visited {
color: #888;
}
#return-to-top {
position: fixed;
bottom: 50px;
right: 20px;
background: #101010;
width: 50px;
height: 50px;
display: block;
text-decoration: none;
-webkit-border-radius: 35px;
-moz-border-radius: 35px;
border-radius: 35px;
display: none;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
#return-to-top i {
color: #fff;
margin: 0;
position: relative;
left: 16px;
top: 13px;
font-size: 19px;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
#return-to-top:hover {
background: #222;
opacity:0.5;
}
#return-to-top:hover i {
top: 6px;
color: #fff;
}