generated from henrikkoch/Best-README-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (58 loc) · 980 Bytes
/
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
html {
font-family: Arial, Helvetica, sans-serif;
display: inline-block;
text-align: center;
}
h1 {
font-size: 1.8rem;
color: white;
}
.topnav {
overflow: hidden;
background-color: #0A1128;
}
body {
margin: 0;
}
.content {
padding: 50px;
}
.card-grid {
max-width: 800px;
margin: 0 auto;
margin-bottom: 30px;
display: grid;
grid-gap: 2rem;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card {
background-color: white;
box-shadow: 2px 2px 12px 1px rgba(140,140,140,.5);
}
button {
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
border-radius: 4px;
}
.onButton{
background-color: #1b8a94;
}
.offButton{
background-color: #5f6c6d;
}
.connectButton{
background-color: #24af37;
}
.disconnectButton{
background-color: #d13a30;
}
.gray-label {
color: #bebebe;
font-size: 1rem;
}
.reading {
font-size: 1.8rem;
}