-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask3.css
More file actions
144 lines (122 loc) · 2.15 KB
/
task3.css
File metadata and controls
144 lines (122 loc) · 2.15 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
*{
margin:0;
padding:0;
}
#out{
background: #eee;
padding:20px;
border:1px solid #999;
overflow:auto;
}
#out #left{
background: #fff;
margin-left:20px;
width:135px;
float:left;
padding:20px;
border:1px solid #999;
}
#out #left img{
border:1px solid blue;
float:left;
}
#out #left p{
margin-left:100px;
}
.article h2{
text-align: center;
}
.article .line{
text-align: center;
line-height: 2;
}
#out #mid{
background: #fff;
border:1px solid #999;
margin-left:220px;
margin-right:200px;
}
#out #right{
background: #fff;
margin-right: 20px;
width:100px;
float:right;
padding:20px;
border:1px solid #999;
}
#out #right img{
border:1px solid blue;
display:block;
margin-bottom: 10px;
}
.container-position{
background: #eee;
border: 1px solid #999;
padding: 20px;
margin-top: 50px;
position: relative;
min-height: 402px;
}
/***left**/
.container-position .left{
background: #fff;
border: 1px solid #999;
padding: 20px;
width: 160px;
position: absolute;
left: 20px;
top: 20px;
}
.container-position .left img{
width: 80px;
height: 80px;
display: block;
}
.container-position .left .team-logo{
float: left;
}
.container-position .left .team-name{
margin-left: 100px;
text-align: center;
}
/*middle*/
.container-position .mid{
background: #fff;
border: 1px solid #999;
padding: 20px;
margin-left: 240px;
margin-right: 140px;
}
.container-position .mid .article{
margin-bottom: 40px;
}
.container-position .mid .bottom-article{
margin-bottom: 0;
}
.container-position .mid h2{
margin-bottom: 20px;
}
.container-position .mid .line{
line-height: 28px;
}
/****right***/
.container-position .right{
background: #fff;
border: 1px solid #999;
padding: 20px;
width: 80px;
position: absolute;
right: 20px;
top: 20px;
}
.container-position .right img{
width: 80px;
height: 80px;
display: block;
}
.container-position .personal-logo{
margin-bottom: 14px;
}
.container-position .bottom-logo{
margin-bottom: 0;
}