-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (92 loc) · 1.86 KB
/
style.css
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Jost', 'Roboto', sans-serif;
font-weight: 400;
background-image: url('/assets/nightscout-pro-background.jpeg');
background-size: cover;
background-repeat: no-repeat;
color: white;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 600;
text-align: center;
}
h3 {
margin-bottom: 0.5em;
}
h4 {
font-weight: 400;
font-size: 14px;
margin-top: -0.7em;
margin-bottom: 0.7em;
}
.container {
display: flex;
height: 100vh;
}
.form-container {
margin: auto;
padding: 1em;
}
.sub-group {
border: 2px solid rgba(255, 255, 255, 0.4);
border-radius: 10px;
padding: 1em;
margin-top: 1em;
background-color: rgba(255, 255, 255, 0.2);
}
input {
width: 100%;
padding: 0.5em;
border-radius: 4px;
border: none;
margin-top: 0.2em;
margin-bottom: 0.8em;
}
button {
width: 100%;
padding: 0.5em;
margin-top: 1em;
font-size: 18px;
color: white;
background: rgb(23,138,109);
background: linear-gradient(161deg, rgba(23,138,109,1) 0%, rgba(27,160,133,1) 100%);
border: none;
border-radius: 4px;
transition: 300ms ease-in-out;
}
button:hover {
cursor: pointer;
background: rgb(19,115,91);
background: linear-gradient(161deg, rgba(19,115,91,1) 0%, rgba(22,131,109,1) 100%);
}
.logo {
width: 100%;
display: flex;
margin-bottom: 1em;
}
img {
margin: auto;
}
#loading {
display: flex;
position: fixed;
z-index: 100;
width: 100%;
height: 100%;
background-color: rgba(192, 192, 192, 0.5);
background-image: url("https://i.stack.imgur.com/MnyxU.gif");
background-repeat: no-repeat;
background-position: center;
}
.form-flex {
display: flex;
justify-content: space-between;
}
.form-flex .form-group {
width: 45%;
}