-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (55 loc) · 1.18 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
*{
margin:0;
padding:0;
}
.container{
width: 100vw;
height: 100vh;
background-image: linear-gradient(to bottom, rgba(51, 82, 30, 0.432), rgba(22, 32, 46, 0.53)),
url('green-house.jpg');
background-position: center;
background-repeat: no-repeat;
background-size:cover;
}
header{
width:100%;
height:15%;
display:flex;
align-items: center;
justify-content: center;
border-bottom: 0.3rem solid rgb(238, 255, 0);
}
.wf{
color:#fff;
}
header h2{
color:#fff;
font-size: 40px;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
letter-spacing: 2px;
font-weight: 30;
text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
}
.data-readings{
display:flex;
justify-content: space-around;
flex-wrap: wrap;
color:rgb(255 226 0);
font-size: 30px;
}
.switch{
color:rgb(0 255 222);
}
.item{
padding:1.5em;
margin:1em;
border:5px solid rgba(12, 55, 196, 0.205);
border-radius: 10px;
background-color: rgb(130 82 0 / 34%);
font-weight: 425;
}
input[type="checkbox"] {
height: 25px;
width: 25px;
background-color: solid #eee;
}