-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
executable file
·161 lines (145 loc) · 4.18 KB
/
styles.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
154
155
156
157
158
159
/* Tarun Chaudhary
B tech (EE)
IIT Rajasthan
tarun29061990@github*/
* {
font-family: 'tahoma', sans-serif;
}
body {
background-color: #eeeeee;
opacity: 0.95;
}
#main #frm {
margin: 0 auto 15px auto;
width: 1000px;
text-align: center;
}
#main #frm button{
width:100px;
height:30px;
border-radius: 10px;
}
#main #frm a{
position: absolute;
left:990px;
}
#main #frm a img{
-webkit-transition-property: all;
-moz-transition-property: all;
-o-transition-property: all;
transition-property: all;
-webkit-transition-duration: 0.3s;
-moz-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
-moz-transition-timing-function: ease-out;
-o-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
#main #frm a img:hover{
width:60px;
height:60px;
}
#main #frm h p{
position: absolute;
top:0px;
left: 1020px;
}
#main #content {
width: 1000px;
border: 1px solid green;
margin: 0 auto;
}
#main #recent {
float: left;
width: 190px;
}
#main #recent ol {
margin: 0 0 0 15px;
padding: 0;
}
#main #recent old li {
padding: 5px;
}
#main #tweets {
width: 1000px;
float: left;
}
#main #tweets ul {
padding: 0;
border-top: 1px solid #999999;
}
#main #tweets ul li {
text-align: left;
margin: 10px;
padding: 10px;
list-style: none;
white-space: nowrap;
border-radius: 10px;
min-height: 50px;
background: #B3EEC7; /* Old browsers */
background: -moz-linear-gradient(top, #B3EEC7 0%, #dddddd 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#B3EEC7), color-stop(100%,#dddddd)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #B3EEC7 0%,#dddddd 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #B3EEC7 0%,#dddddd 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #B3EEC7 0%,#dddddd 100%); /* IE10+ */
background: linear-gradient(top, #B3EEC7 0%,#dddddd 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#B3EEC7', endColorstr='#dddddd',GradientType=0 ); /* IE6-9 */
}
#main #tweets ul li:hover {
background: #cfe7fa; /* Old browsers */
background: -moz-linear-gradient(top, #cfe7fa 0%, #6393c1 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cfe7fa), color-stop(100%,#6393c1)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #cfe7fa 0%,#6393c1 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #cfe7fa 0%,#6393c1 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #cfe7fa 0%,#6393c1 100%); /* IE10+ */
background: linear-gradient(top, #cfe7fa 0%,#6393c1 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cfe7fa', endColorstr='#6393c1',GradientType=0 ); /* IE6-9 */
}
#main #tweets ul li span {
float: right;
font-size: 8pt;
color: #999793;
}
#main #tweets ul li img {
float: left;
margin: 0 10px 0 0;
width: 48px;
height: 48px;
-webkit-transition-property: all;
-moz-transition-property: all;
-o-transition-property: all;
transition-property: all;
-webkit-transition-duration: 0.3s;
-moz-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
-moz-transition-timing-function: ease-out;
-o-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
#main #tweets ul li img:hover{
width:70px;
height:70px;
}
#main #tweets ul li h3 {
font-size: 11pt;
margin: 0;
}
#main #tweets ul li p {
margin: 0;
font-size: 13pt;
font-style: bold;
font-family: monospace;
white-space: pre;
white-space: pre-wrap;
white-space: pre-line;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
white-space: -moz-pre-wrap;
white-space: -hp-pre-wrap;
word-wrap: break-word;
}