-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.html
149 lines (122 loc) · 8.04 KB
/
schedule.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="shortcut icon" href="images/icon.png" type="image/x-icon">
<meta name="description" content="Academic Page">
<title>ICIP 2024 Grand Challenge on Vidoe Complexity</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:700,400&subset=cyrillic,latin,greek,vietnamese">
<link rel="stylesheet" href="styles/bootstrap.min.css">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/additional.css" type="text/css">
<style>
.mbr-article--wysiwyg p {
text-align: justify;
font-size: 20px;
font-family: 'Candara', sans-serif;
}
.photo-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
max-width: 1000px;
margin: 0 auto;
}
.photo-item {
width: 100%;
margin-bottom: 20px;
position: relative;
overflow: hidden;
}
.photo-item img {
width: 100%;
height: 100%;
object-fit: cover; /* Maintain aspect ratio while covering the container */
display: block;
}
.photo-text {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0.7);
color: white;
text-align: center;
padding: 5px;
}
</style>
</head>
<body>
<section class="mbr-navbar mbr-navbar--freeze mbr-navbar--absolute mbr-navbar--sticky mbr-navbar--auto-collapse" id="ext_menu-24" data-rv-view="15">
<div class="mbr-navbar__section mbr-section">
<div class="mbr-section__container container">
<div class="mbr-navbar__container">
<div class="mbr-navbar__hamburger mbr-hamburger"><span class="mbr-hamburger__line"></span></div>
<div class="mbr-navbar__column mbr-navbar__menu">
<nav class="mbr-navbar__menu-box mbr-navbar__menu-box--inline-right">
<div class="mbr-navbar__column">
<ul class="mbr-navbar__items mbr-navbar__items--right float-left mbr-buttons mbr-buttons--freeze mbr-buttons--right btn-decorator mbr-buttons--active mbr-buttons--only-links">
<li class="mbr-navbar__item">
<a class="mbr-buttons__link btn text-black" href="index.html">HOME</a>
</li>
<li class="mbr-navbar__item">
<a class="mbr-buttons__link btn text-black" href="dataset.html">Dataset</a>
</li>
<li class="mbr-navbar__item">
<a class="mbr-buttons__link btn text-black" href="rules.html">Rules</a>
</li>
<li class="mbr-navbar__item">
<a class="mbr-buttons__link btn text-black" href="schedule.html">Schedule</a>
</li>
<li class="mbr-navbar__item">
<a class="mbr-buttons__link btn text-black" href="prize.html">Prize</a>
</li>
<li class="mbr-navbar__item">
<a class="mbr-buttons__link btn text-black" href="result.html">Result</a>
</li>
<li class="mbr-navbar__item">
<a class="mbr-buttons__link btn text-black" href="team.html">Team</a>
</li>
<li class="mbr-navbar__item">
<a class="mbr-buttons__link btn text-black" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div>
</section>
<section class="mbr-section mbr-section--relative mbr-after-navbar" id="msg-box4-16" data-rv-view="2" style="background-color: rgb(255, 255, 255);">
<div class="mbr-section__container mbr-section__container--isolated container" style="padding-top: 3px; padding-bottom: 90px;">
<div class="row">
<div class="mbr-box mbr-box--fixed mbr-box--adapted">
<div class="mbr-box__magnet mbr-box__magnet--top-right mbr-section__left col-sm-6 image-size" style="width: 100%;">
<figure class="mbr-figure mbr-figure--adapted mbr-figure--caption-inside-bottom mbr-figure--full-width"><img src="images/ICIP_logo.jpeg" class="mbr-figure__img"></figure>
</div>
</div>
</div>
</div>
</section>
<section class="mbr-section mbr-section--relative mbr-section--fixed-size" id="content5-63" data-rv-view="7" style="background-color: rgb(250, 250, 250);">
<div class="mbr-section__container container mbr-section__container--first" style="padding-top: 1px;padding-top: 20px">
<div class="mbr-header mbr-header--wysiwyg row">
<div class="col-sm-8 col-sm-offset-2">
<h3 class="mbr-header__text">Schedule</h3>
</div>
</div>
</div>
<div class="photo-container">
<div class="photo-item">
<img src="images/schedule.jpeg" alt="Photo 1">
</div>
</section>
<script src="scripts/jquery.min.js"></script>
<script src="scripts/bootstrap.min.js"></script>
<script src="scripts/script.js"></script>
</body>
</html>