-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
76 lines (66 loc) · 1.08 KB
/
main.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
* {
margin: 0;
padding:0;
}
body {
background-image: url("../static/img/patterns2.png");
background-repeat: repeat;
background-attachment: fixed ;
}
.clear {
clear:both;
}
#main_wrapper
{
float: left;
margin-left:100px;
width:350px;
height:780px;
background-image: url("../static/img/iphonebackground.png");
background-repeat: no-repeat;
position: relative;
}
#logo_wrapper {
float:left;
margin-left: 150px;
margin-top: 150px;
width:300px;
height:500px;
}
#keypoint_wrapper {
float:left;
margin-top:50px;
margin-left:50px;
}
#content_wrapper {
position:absolute;
top:166px;
left:33px;
width:298px;
height:445px;
background-color: #373736;
overflow:hidden;
}
#content {
position: relative;
height:345px;
padding:2px;
z-index:50;
}
#statusbar {
width:298px;
height:20px;
background-image: url("../static/img/statusbar.png");
background-repeat: no-repeat;
position:relative;
z-index:100;
}
#menubar {
width:100%;
height:80px;
border:1px solid #706f6f;
border-top:1px solid #a9a8a8;
background-color: #706f6f;
position:relative;
z-index:100;
}