-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
109 lines (99 loc) · 2.9 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RoboCup Soccer Simulation</title>
<link href="Front/style/main.css" rel="stylesheet">
<style>
body {
color: #267810;
overflow: hidden;
}
body a {
color: #267810 !important;
font-weight: bold;
}
#myVideo {
position: absolute;
filter: blur(4px);
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -2;
transform: translateX(-50%) translateY(-50%);
}
.background {
overflow-x: hidden;
overflow-y: hidden;
position: absolute;
top: 0px;
overflow: hidden;
width: 100% !important;
height: 100% !important;
z-index: -2;
background-size: 22px 22px;
}
.overlay {
background-color: rgba(0, 0, 0, 0.3);
position: absolute;
height: 100%;
width: 100%;
top: 0;
}
.split {
background-color: #267810;
}
@media only screen and (max-width: 1000px) {
.title-lg {
display: none!important;
}
.title-md {
display: flex!important;
justify-content: center;
align-items: center;
flex-direction: column;
margin: 0!important;
}
.documentation a{
display: block;
width: 100%;
margin-left: 0;
margin-right: 0;
padding-left: 0;
padding-right: 0;
}
}
</style>
</head>
<body>
<div class="background">
<video autoplay muted loop id="myVideo">
<source src="background.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<div class="overlay"></div>
</div>
<div>
<div class="title-lg">
<div class="bg"></div>
<h1>Robocup Soccer Simulation</h1>
<div class="split"></div>
<h1 style="direction: rtl">شبیهسازی فوتبال روبوکاپ</h1>
</div>
<div class="title-md" style="z-index: 3;">
<h1>Robocup Soccer Simulation</h1>
<hr style="background-color: #267810">
<h1 style="direction: rtl">شبیهسازی فوتبال روبوکاپ</h1>
</div>
<div class="documentation" style="text-align: center; z-index: 3">
<a href="2D/FA">مستندات شبیهسازی دوبعدی فوتبال</a>
<a href="http://aparat.com/RCSS.IR">آپارات</a>
<a href="https://www.youtube.com/channel/UCTBjTpbgmLBFAj672tVeLyQ">یوتیوب</a>
<a href="https://t.me/SoccerSim2D">کانال و گروه تلگرام</a>
</div>
</div>
</body>
</html>