-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
58 lines (48 loc) · 854 Bytes
/
stylesheet.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
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-family: Courier;
}
.masonry {
background: #EEE;
max-width: 1000px;
margin: 0 auto;
}
.masonry .item {
width: 100px;
height: 100px;
float: left;
background: #dddddd;
border: 2px solid white;
}
.item.w2 { width: 150px; }
.item.w3 { width: 200px; }
.item.w4 { width: 250px; }
.item.w5 { width: 700px; }
.item.h2 { height: 50px; }
.item.h3 { height: 150px; }
.item.h4 { height: 200px; }
#temperature {
font-size: 350%;
text-align:center;
line-height: 200px;
}
#presence {
font-size: 350%;
text-align:center;
line-height: 100px;
}
#message_id {
font-size: 200%;
}
#send {
text-align:center;
line-height: 100px;
}
#send:hover {
background-color: grey;
}
#docs:hover {
background-color: grey;
}