-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (95 loc) · 2.08 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
<!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>Change Background Color</title>
</head>
<style>
/* The device with borders */
.smartphone {
position: relative;
width: 360px;
height: 640px;
margin: auto;
border: 16px black solid;
border-top-width: 60px;
border-bottom-width: 60px;
border-radius: 36px;
}
/* The horizontal line on the top of the device */
.smartphone:before {
content: '';
display: block;
width: 60px;
height: 5px;
position: absolute;
top: -30px;
left: 50%;
transform: translate(-50%, -50%);
background: #333;
border-radius: 10px;
}
/* The circle on the bottom of the device */
.smartphone:after {
content: '';
display: block;
width: 35px;
height: 35px;
position: absolute;
left: 50%;
bottom: -65px;
transform: translate(-50%, -50%);
background: #333;
border-radius: 50%;
}
/* The screen (or content) of the device */
.smartphone .content {
width: 360px;
height: 640px;
background: white;
}
#mostrador{
height: 200px;
width: 360px;
margin-bottom: 30px ;
}
p{
text-align: center;
font-size: larger;
}
button{
align-self: center;
padding: 2px;
position: relative;
}
.alinhar{
align-items: center;
align-self: center;
align-content: center;
margin: 0 auto;
vertical-align: center;
text-align: center;
}
h1{
margin-top: 0.5%;
margin-bottom: 2%;
text-align: center;
}
</style>
<body>
<h1>RGB Color Generator</h1>
<div class="smartphone">
<div class="content">
<div class="alinhar">
<div id="mostrador"></div>
<p>Click on the button to generate a new RGB color</p>
<button id="botao">Click here</button>
<p id="resultado"></p>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>