-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.css
More file actions
158 lines (135 loc) · 2.31 KB
/
profile.css
File metadata and controls
158 lines (135 loc) · 2.31 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
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
html, body {
margin: 0px;
padding: 0px;
color: #000;
background: #a7a09a;
font-family: sans-serif;
font-size: 12px;
}
a {
text-decoration: none;
font-weight: bold;
}
#content {
width: 1024px;
margin: 0px auto;
background-color: #99C;
}
#header {
background: #ddd;
text-align: center;
background: #cc9;
}
#footer {
clear: both;
text-align: center;
background:#cc9;
}
#nav {
background: #c99;
}
#nav ul {
margin: 0;
padding: 0;
list-style: none;
}
#nav li {
display: inline;
margin: 0;
padding: 0;
}
.section-heading {
margin: 0px;
}
#profile-picture {
width: 220px;
margin: 10px;
background-color: yellow;
float: left;
}
#profile-goals {
width: 480px;
height: 240px;
margin: 10px;
padding: 10px;
background-color: yellow;
float: right;
overflow-y: auto;
}
#progress {
width: 452px;
border: 1px solid black;
position: relative;
padding: 3px;
margin: 10px;
}
#percent {
position: absolute;
left: 50%;
}
#bar {
height: 20px;
background-color: green;
width: 30%;
}
#profile-survey {
width: 380px;
height: 180px;
margin: 10px;
padding: 10px;
background-color: yellow;
float: left;
clear: left;
overflow-y: auto;
}
#profile-survey p {
margin: 0px 0px 10px;
}
#profile-feedback {
width: 380px;
height: 300px;
margin: 10px;
padding: 10px;
background-color: yellow;
float: left;
clear: left;
}
/* WRITING FEED */
#profile-writing-feed {
width: 560px; /* total width: 600px */
margin: 10px;
padding: 10px;
float: right;
clear: right;
background-color: yellow;
}
#profile-writing-feed section {
width: 538px; /* total width: 560px */
padding: 10px;
margin-bottom: 10px;
border: 1px solid black;
background-color: white;
}
/* CLEARFIX TECHNIQUE prevents section container
from collapsing due to floated elements within */
#profile-writing-feed section:before,
#profile-writing-feed section:after {
content: "";
display: table;
}
#profile-writing-feed:after {
clear: both;
}
#profile-writing-feed section {
*zoom: 1;
} /* END CLEARFIX TECHNIQUE */
.profile-pic-tiny {
width: 32px;
height: 32px;
float: left;
}
.comment-area {
width: 496px;
margin-left: 10px;
float: left;
}