-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmain.css
More file actions
99 lines (89 loc) · 1.81 KB
/
main.css
File metadata and controls
99 lines (89 loc) · 1.81 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
body {
padding: 0px;
margin: 0px;
color: #ffffff;
background-color: #000000;
height: 100%;
overflow: hidden;
}
#container {
padding: 5px;
}
img {
max-width:100%;
}
.img_container {
height: 250px;
width: 300px;
}
.page_new {
margin: 5px;
float: left;
overflow: hidden;
position: relative;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
.chat_container {
border-style:solid;
border-width:1px;
width: 500px;
background: #DDDDDD;
margin: 0px;
padding: 0px;
overflow: hidden;
}
.chat_frame {
margin: 0px;
padding: 0px;
width: 500px;
overflow: hidden;
}
.title {
background-color: rgba(96, 96, 96, 0.4);
position: absolute;
top: 215px;
width: 300px;
font-size: 1em;
padding: 10px;
padding-top: 3px;
padding-bottom: 5px;
height: 40px;
}
.trend {
position: absolute;
left: 40px;
top: 4px;
height: 20px;
}
.visitors {
background-color: rgba(50, 50, 50, 0.4);
position: absolute;
display: inline-block;
font-size: 1.4em;
font-weight: bold;
margin-left:auto;
margin-right:auto;
height: 25px;
width: 40px;
text-align:center;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.isotope,
.isotope .isotope-item {
/* change duration value to whatever you like */
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
transition-property: transform, opacity;
}