-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews.html
90 lines (90 loc) · 3.59 KB
/
news.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GL Game - News</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
</head>
<body style="background-image: url('./golologo_appicon.png')">
<style>
.updatebanner {
/* transform: skew(-5deg, 0deg); --!> */
background-color: orange;
color: white;
margin-left: 10px;
margin-bottom: 10px;
padding: 10px;
text-align: center;
border: 2px black solid;
width: 250px;
height: 300px;
}
@media (prefers-color-scheme: dark) {
.updatebanner {
transform: skew(-5deg, 0deg);
background-color: darkorange;
color: white;
margin-left: 10px;
padding: 10px;
text-align: center;
border: 2px black solid;
width: 250px;
height: 300px
}
}
.updates {
display: flex;
flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
.updates {
display: block;
}
.updatebanner {
transform: skew(0deg, 0deg);
margin-up: 5px;
width: 80%;
}
}
</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<div class="updates">
<div class='updatebanner'>
<img src="posters/update_1.2.png" width="200px" height="120px">
<h2>Оновлення 1.2</h2>
<button class="btn btn-success"><a style="text-decoration: none; color: white;" href="/news.12.html">Читати</a></button>
</div>
<div class='updatebanner'>
<img src="posters/update_1.1.png" width="200px" height="120px">
<h2>Оновлення 1.1</h2>
<button class="btn btn-success"><a style="text-decoration: none; color: white;" href="/news.11.html">Читати</a></button>
</div>
<div class='updatebanner'>
<img src="posters/update_1.0.png" width="200px" height="120px">
<h2>Оновлення 1.0</h2>
<button class="btn btn-success"><a style="text-decoration: none; color: white;" href="/news.10.html">Читати</a></button>
</div>
<div class='updatebanner'>
<img src="posters/update_0.9.png">
<h2>Оновлення 0.9</h2>
<button class="btn btn-success"><a style="text-decoration: none; color: white;" href="/news.09.html">Читати</a></button>
</div>
<div class='updatebanner'>
<img src="posters/update_0.8.png">
<h2>Оновлення 0.8</h2>
<button class="btn btn-success"><a style="text-decoration: none; color: white;" href="/news.08.html">Читати</a></button>
</div>
<div class='updatebanner'>
<img src="posters/update_0.7.png">
<h2>Оновлення 0.7</h2>
<button class="btn btn-success"><a style="text-decoration: none; color: white;" href="/news.07.html">Читати</a></button>
</div>
<div class='updatebanner'>
<img src="posters/update_0.6.png">
<h2>Оновлення 0.6</h2>
<button class="btn btn-success"><a style="text-decoration: none; color: white;" href="/news.06.html">Читати</a></button>
</div>
</div>
</body>
</html>