-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (44 loc) · 799 Bytes
/
Copy pathstyle.css
File metadata and controls
50 lines (44 loc) · 799 Bytes
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
body{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: antiquewhite;
font-family: Arial, Helvetica, sans-serif;
}
#profile-img{
width: 300px;
box-shadow: 1px 2px #333;
}
#profile-name{
text-align: center;
width: 100%;
}
#profile-job{
text-align:center;
}
#profile-container{
max-width: 300px;
margin: 80px auto;
background-color: white;
border: 1px solid gray;
border-radius: 6px;
}
#header {
width: 100%;
height: 50px;
line-height: 50px;
background-color: burlywood;
text-align: center;
color: white;
}
#footer{
width: 100%;
height: 50px;
position: absolute;
bottom: 0;
line-height: 50px;
background-color: burlywood;
text-align: center;
color: white;
}