-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 1006 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body {
margin: 0;
margin-top: 10px;
padding: 0;
width: 320px;
background-image: url('imgs/bg.jpg');
color: white;
font-size: 15px;
}
input {
height: 30px;
font-size: 13px;
border-radius: 5px;
}
#losuj {
width: 100%;
height: 50px;
border: none;
background-color: #36802d;
margin-top: 10px;
color: white;
border-radius: 2px;
}
#end {
float: right;
}
h2 {
text-align: center;
}
</style>
<link rel="stylesheet" href="style.css">
</head>
<body>
<input type="date" id="start"> -<input type="date" id="end">
<div class="losowanie"></div>
<div class="win"></div>
<button id="losuj">Losuj!</button>
<footer>© 2019 Mateusz Iwaniszczuk</footer>
<script src="script.js"></script>
</body>
</html>