-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalendario.txt
63 lines (55 loc) · 1.11 KB
/
Calendario.txt
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="/CSS/styleCalendar.css">
</head>
<body>
<input type="date">
<img class="img" src="/IMG/icon.png">
</body>
</html>
/////////////////CSS//////////////////////
*{
margin: 0;
padding: 0;
font-family: cursive;
}
body{
background-color: #082032;
}
input[type="date"]{
width: 200px;
height: 30px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
background: #e49c00 url(icon.png);
background-size: 30px;
background-repeat: no-repeat;
background-position: 90%;
padding: 5px;
font-size: 18px;
font-weight: 999;
border: none;
outline: none;
}
input:focus{
border: 5px solid #334756;
}
input[type="date"]
::-webkit-calendar-picker-indication{
opacity: 0;
}
.img{
width: 60px;
height: 45px;
position: absolute;
left: 819px;
right: 50px;
top: 47%;
}