-
Notifications
You must be signed in to change notification settings - Fork 0
/
12-Stadyum_Tasarimi.html
124 lines (124 loc) · 3.05 KB
/
12-Stadyum_Tasarimi.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>programile8</title>
<style type="text/css">
.stadyum {
width: 700px;
height: 865px;
margin: 10px auto;
border-left: 120px solid #ddd;
border-right: 120px solid #ddd;
border-top: 120px solid #ddd;
border-bottom: 120px solid #58f55c;
border-radius: 200px;
background-color: #58f55c;
}
.kutu {
width: 700px;
height: 865px;
background-color: #58f55c;
border-radius: 150px 150px 0 0;
}
.sahadisi {
width: 550px;
height: 670px;
background-color: #360;
margin: 100px auto;
border-radius: 100px;
padding: 70px 0 0 0;
}
.saha {
width: 400px;
height: 600px;
background-color: #0c0;
margin: 0 auto;
border: 1px solid white;
}
.ust1 {
width: 250px;
height: 100px;
border-bottom: 1px solid white;
border-left: 1px solid white;
border-right: 1px solid white;
margin: 0 auto;
}
.ust2 {
width: 120px;
height: 50px;
border-bottom: 1px solid white;
border-left: 1px solid white;
border-right: 1px solid white;
margin: 0 auto;
}
.ustyay {
width: 100px;
height: 40px;
border-bottom: 1px solid white;
border-right: 1px solid white;
border-left: 1px solid white;
margin: 0 auto;
border-radius: 0 0 55px 55px;
}
.ortacizgi {
width: 400px;
height: 1px;
border: 1px solid white;
margin: 150px 0 0 0;
}
.ortayay {
width: 120px;
height: 120px;
border: 1px solid white;
border-radius: 60px;
margin: -60px auto 0 auto;
}
.altyay {
width: 100px;
height: 40px;
border-top: 1px solid white;
border-right: 1px solid white;
border-left: 1px solid white;
margin: 103px auto 0 auto;
border-radius: 55px 55px 0 0;
}
.alt1 {
width: 250px;
height: 100px;
border-top: 1px solid white;
border-left: 1px solid white;
border-right: 1px solid white;
margin: 0 auto;
}
.alt2 {
width: 120px;
height: 50px;
border-top: 1px solid white;
border-left: 1px solid white;
border-right: 1px solid white;
margin: 50px auto 0 auto;
}
</style>
</head>
<body>
<div class="stadyum">
<div class="kutu">
<div class="sahadisi">
<div class="saha">
<div class="ust1">
<div class="ust2"></div>
</div>
<div class="ustyay"></div>
<div class="ortacizgi"></div>
<div class="ortayay"></div>
<div class="altyay"></div>
<div class="alt1">
<div class="alt2"></div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>