-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGUI Example.html
109 lines (101 loc) · 2.55 KB
/
GUI Example.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
<html>
<head>
<title>
gui testing
</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
</head>
<style>
.box{
<!border-radius: 25px;
padding:15px;
}
.box-big{
<!border-radius: 25px;
padding:15px;
}
.box-mini{
<!border-radius: 25px;
padding: 5px;
height: 120px
}
.row{
height:33%;
}
body{
background-color: #000000;
}
.flexy{
display: flex;
}
.vertical-center{
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
</style>
<body>
<div class="container">
<div class="row">
<div class="col-6 box" style="background-color: #00A2E8;">
<h1>weather</h1>
<h6>temperature - </h6>
<h6>air pressure - </h6>
<h6>humidity - </h6>
</div>
<div class="col-6 box" style="background-color: #FFAEC9;">
<h1>time/sun info</h1>
<h6>time - </h6>
<h6>sun down - </h6>
<h6>sun up - </h6>
</div>
</div>
<div class="row">
<div class="col-6 box" style="background-color: #22B14C;">
<h1>physics</h1>
<h6>pitch - </h6>
<h6>roll - </h6>
<h6>yaw - </h6>
</div>
<div class="col-6 box" style="background-color: #FFF200;">
<h1>board info</h1>
<h6>CPU - </h6>
<h6>MEMORY - </h6>
</div>
</div>
<div class="row">
<div class="col-12 box-big flex-container" style="background-color: #A349A4;">
<h1>send information</h1>
<div class="flexy">
<div class="col-2 box-mini" style="background-color: #00A2E8;">
<div class="vertical-center">
<h5>weather</h5> </div>
</div>
<div class="col-2 box-mini" style="background-color: #FFAEC9;">
<div class="vertical-center">
<h5>time and <br> sun info</h5> </div>
</div>
<div class="col-2 box-mini" style="background-color: #22B14C;">
<div class="vertical-center">
<h5>physics</h5> </div>
</div>
<div class="col-2 box-mini" style="background-color: #FFF200;">
<div class="vertical-center">
<h5>board info</h5> </div>
</div>
<div class="col-2 box-mini" style="background-color: #ED1C24;">
<div class="vertical-center">
<h5>SOS</h5> </div>
</div>
<div class="col-2 box-mini" style="background-color: #FF7F27;">
<div class="vertical-center">
<h5>EXIT</h5> </div>
</div>
</div>
</div>
</div>
</div>
</body>