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
| html {
position: relative;
min-height: 100%;
}
body {
margin:0;
color: #444;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color:#eeeeee;
margin: 0 0 100px;
}
#profilePic {
float:left;
margin:15px;
}
#about {
float:left;
}
#about a {
text-decoration:none;
}
#header {
width:100%;
height:40px;
background: #6a6f75; /* Old browsers */
background: -moz-linear-gradient(top, #6a6f75 3%, #28343b 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(3%,#6a6f75), color-stop(100%,#28343b)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #6a6f75 3%,#28343b 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #6a6f75 3%,#28343b 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #6a6f75 3%,#28343b 100%); /* IE10+ */
background: linear-gradient(to bottom, #6a6f75 3%,#28343b 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6a6f75', endColorstr='#28343b',GradientType=0 ); /* IE6-9 */
}
#header h1 {
color:#FFF;
margin-top:0px;
position:relative;
margin-left:30%;
}
#main {
width:40%;
min-width:650px;
margin:15px auto 0 auto;
}
footer {
text-align:center;
position: absolute;
left: 0;
bottom: 0;
height: 100px;
width: 100%;
}
#followInfo {
margin-top:15px;
float:right;
margin-right:5%;
}
#profileInfo {
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
overflow:hidden;
background-color:#FFF;
}
.count {
text-align:center;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
border:solid #999 1px;
background-color:#CCC;
padding:3px;
}
.countName {
font-size:12px;
font-style:italic;
}
.posts {
margin-top:20px;
height:500px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
overflow:hidden;
background-color:#FFF;
}
article {
margin:15px;
}
|