forked from wxsd-sales/pwa-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
149 lines (143 loc) · 4.41 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>PWA Web App</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"
/>
<style>
html,
body {
touch-action: none;
}
#sidebar {
background-position: center;
background-repeat: no-repeat;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: black;
background-size: auto 100%;
background-image: url("https://cdn.bfldr.com/ENSXS21L/at/8x97tzhsn85svw5vj326x/231031_Cisco_Contextual_TrainingRoom_EQX_CeilingMicPRO.jpg?auto=webp&format=jpg&width=800&height=800");
}
.status {
background-color: coral;
}
</style>
</head>
<body>
<div class="columns is-gapless">
<div
class="column is-one-fifth is-flex is-flex-direction-column is-justify-content-end"
style="height: 100vh"
id="sidebar"
>
<div class="pl-3 pb-3">
<p
class="title has-text-white"
id="outsideTemp"
style="font-size: 2.5rem"
>
84.2°F
</p>
<p
class="title has-text-white"
id="outsideCondititions"
style="font-size: 2.5rem"
>
Weather
</p>
<p
class="title has-text-white"
id="cityName"
style="font-size: 2.5rem"
>
City Name
</p>
</div>
</div>
<div class="column">
<div class="columns is-gapless is-multiline">
<div
class="status column is-12 is-flex is-align-items-center is-justify-content-end"
style="height: 15vh"
id="topPanel"
>
<p
class="title pr-6 has-text-white"
id="workspaceName"
style="font-size: 3.5rem"
>
My Meeting Room
</p>
</div>
<div
class="column is-12 has-background-dark"
style="height: 70vh"
id="main"
>
<div
class="columns pt-6 mb-0 is-gapless is-flex is-align-content-center has-text-white"
>
<div
class="column is-flex is-flex-direction-row is-justify-content-center"
>
<img
width="40px"
style="filter: invert(1);"
src="icons/contact-group_20.svg"
/>
<p class="title pl-2 has-text-light" id="peopleCount">1/10</p>
</div>
<div
class="column is-flex is-flex-direction-row is-justify-content-center"
>
<img
width="40px"
style="filter: invert(1);"
src="icons/temperature_14.svg"
/>
<p class="title pl-2 has-text-light" id="roomTemp">80°F</p>
</div>
<div
class="column is-flex is-flex-direction-row is-justify-content-center"
>
<img
width="40px "
style="filter: invert(1);"
src="icons/noise-removal_12.svg"
/>
<p class="title pl-2 has-text-light" id="roomSound">30 dBA</p>
</div>
</div>
<div class="columns is-gapless" style="height: 100%">
<div
class="column is-12 is-flex is-justify-content-center is-align-items-center"
>
<img
src="https://cdn.bfldr.com/ENSXS21L/at/8ztbn4cbt63xsxc3tc35pg3/webexbycisco-3d-vertical-color-white-text.png?auto=webp&format=png"
style="height: 60vh"
/>
</div>
</div>
</div>
<div
class="status column is-12 is-flex is-align-items-center is-justify-content-end"
style="height: 15vh"
id="bottomPanel"
>
<p
class="title pr-6 has-text-white"
id="roomStatus"
style="font-size: 4rem"
>
Occupied
</p>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>