This repository has been archived by the owner on Jun 7, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwifi_alerts.html
106 lines (102 loc) · 4.42 KB
/
wifi_alerts.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>peach-patterns</title>
<meta name="description" content="PeachCloud Pattern Library">
<meta name="author" content="glyph">
<link rel="stylesheet" href="css/peachcloud.css">
<style>@import url("css/_variables.css");</style>
</head>
<style>
.container {
display: grid;
grid-template-columns: 2fr 3fr 2fr;
grid-template-rows: auto;
grid-row-gap: 0.5rem;
align-items: center;
margin-bottom: 1rem;
}
.input {
margin-bottom: 0;
}
</style>
<body style="background-color: var(--near-white);">
<main>
<div class="card center" style="width: 100%; margin-top: 1rem;">
<div class="card-container container" style="border: 1px solid #111;">
<div class="center">
<img class="icon" title="Download" src="icons/down-arrow.svg">
</div>
<div>
<p class="card-text label-medium" style="padding-bottom: 0;">WiFi</p>
<label class="label-small">DOWNLOAD TOTAL</label>
</div>
<div style="justify-self: left;">
<div class="flex-grid">
<label class="label-large" title="Data download total in MB">158</label>
<label class="label-small font-near-black">MB</label>
</div>
</div>
<div class="center">
<img class="icon" title="Warning" src="icons/alert.svg">
</div>
<div>
<label class="list-text font-near-black"><input class="input" style="text-align: right; width: 7rem; margin-right: 5px;" placeholder="0" type="text" title="Warning threshold value">MB</label>
<label class="label-small" style="padding-top: 0.25rem;">WARNING THRESHOLD</label>
</div>
<div>
</div>
<div class="center">
<img class="icon" title="Critical" src="icons/scissor.svg">
</div>
<div>
<label class="list-text font-near-black"><input class="input" style="text-align: right; width: 7rem; margin-right: 5px;" placeholder="0" type="text" title="Warning threshold value">MB</label>
<label class="label-small" style="padding-top: 0.25rem;">CRITICAL THRESHOLD</label>
</div>
<div>
</div>
</div>
<div class="card-container container" style="border: solid 1px #111;">
<div class="center">
<img class="icon" title="Upload" src="icons/up-arrow.svg">
</div>
<div>
<p class="card-text label-medium" style="padding-bottom: 0;">WiFi</p>
<label class="label-small">UPLOAD TOTAL</label>
</div>
<div style="justify-self: left;">
<div class="flex-grid">
<label class="label-large" title="Data upload total in MB">715</label>
<label class="label-small font-near-black">MB</label>
</div>
</div>
<div class="center">
<img class="icon" title="Warning" src="icons/alert.svg">
</div>
<div>
<label class="list-text font-near-black"><input class="input" style="text-align: right; width: 7rem; margin-right: 5px;" placeholder="0" type="text" title="Warning threshold value">MB</label>
<label class="label-small" style="padding-top: 0.25rem;">WARNING THRESHOLD</label>
</div>
<div>
</div>
<div class="center">
<img class="icon" title="Critical" src="icons/scissor.svg">
</div>
<div>
<label class="list-text font-near-black"><input class="input" style="text-align: right; width: 7rem; margin-right: 5px;" placeholder="0" type="text" title="Warning threshold value">MB</label>
<label class="label-small" style="padding-top: 0.25rem;">CRITICAL THRESHOLD</label>
</div>
<div>
</div>
</div>
<div>
<div style="grid-column-start: 1; grid-column-end: 4;">
<button class="center button">Update</button>
<button class="center button">Cancel</button>
</div>
</div>
</div>
</main>
</body>
</html>