-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
153 lines (150 loc) · 3.4 KB
/
style.css
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
151
152
153
/* * General css file for demos - picssel.com */
* {
margin: 0;
padding: 0;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box
}
body {
font-family: arial, sans-serif;
font-size: 14px;
line-height: 1.4em;
color: #1a1a1a
}
.cf:after{
visibility:hidden;
display:block;
content:"";
clear:both;
height:0
}
* html .cf{
zoom:1
}
/* IE6 */
*:first-child+html .cf{
zoom:1
}
/* IE7 */
h1, h2, h3, h4, h5, h6, p {
padding-bottom: 15px;
}
p {
font-size: 12px;
line-height: 16px;
}
a {
outline: 0 none;
border: 0 none;
}
a img {
border: 0 none;
}
#logo {
background: url("/isc.webp") no-repeat scroll 0 10px rgba(0, 0, 0, 0);
height: 100px;
margin: 10px auto;
max-width: 972px;
position: relative;
width: 95%;
}
#wrap {
box-sizing: border-box;
margin: 20px auto;
max-width: 972px;
padding-bottom: 30px;
position: relative;
width: 95%;
}
.button {
width:200px;
display:block;
text-align:center;
padding:5px;
color:#000;
background:#ccc fixed;
background:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#ccc));
background:-moz-linear-gradient(top,#fff,#ccc);
background:-o-linear-gradient(top,#fff,#ccc);
border-top:solid 1px #bbb;
border-right:solid 1px #aaa;
border-left:solid 1px #999;
border-bottom:solid 1px #888;
text-shadow:#fff -1px 1px 1px;
-moz-box-shadow:0px 1px 3px #ccc;
-webkit-box-shadow:0px 1px 3px #ccc;
box-shadow:0px 1px 3px #ccc;
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
cursor:pointer;
text-decoration: none
}
.button:hover {
background:-webkit-gradient(linear,left top,left bottom,from(#dedede),to(#fff));
background:-moz-linear-gradient(top,#dedede,#fff);
background:-o-linear-gradient(top,#dedede,#fff);
text-decoration: none
}
.imgContainer {
width: 100px;
height: 100px;
overflow: hidden;
text-align: center;
margin: 10px 20px 10px 0;
float: left;
border: solid 1px #999;
display: block;
}
.imgContainer:hover{
border-bottom: solid 1px #444;
border-left: solid 1px #444;
margin: 9px 19px 11px 1px;
-webkit-box-shadow: -3px 3px 10px 1px #777;
-moz-box-shadow: -3px 3px 10px 1px #777;
box-shadow: -3px 3px 10px 1px #777;
}
#galleryTab {
margin: 10px 5px 20px 0;
top: 26px;
}
.galleryWrap {
padding: 0 0 30px;
}
.filter {
border: 1px solid #ccc;
color: #333333;
float: left;
font-size: 12px;
margin: 0 12px 0 0;
padding: 5px 15px;
text-align: center;
text-decoration: none;
text-transform: capitalize;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.filter:hover {
background-color: #f8f8f8;
margin: -1px 11px 1px 1px;
border-bottom: solid 1px #aaa;
border-left: solid 1px #aaa;
-webkit-box-shadow: -2px 2px 5px 1px #a3a3a3;
-moz-box-shadow: -2px 2px 5px 1px #a3a3a3;
box-shadow: -2px 2px 5px 1px #a3a3a3;
}
.filter.active {
background-color: #e2e2e2;
border: 1px solid #ccc;
color: #000;
cursor: default;
margin: 0 12px 0 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.showState{
display:none;
}