-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.css
More file actions
69 lines (58 loc) · 1.03 KB
/
Copy pathlayout.css
File metadata and controls
69 lines (58 loc) · 1.03 KB
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
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0px;
}
.bulbs-container {
display: flex;
direction: row;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin:auto;
}
.item {
text-align: center;
margin:10px;
}
.border-dashed {
border: 2px dashed rgb(209, 166, 209);
}
.input-container {
margin: auto;
margin-top: 20px;
padding: 30px;
background-color: #f5f5f5;
}
.table-container {
margin: auto;
margin-top: 20px;
padding: 30px;
background-color: #f5f5f5;
}
.row {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 5px;
}
.row-header {
font-weight: bold;
}
@media screen and (max-width:599px) {
.row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.column {
margin-top: 10px;
}
}
@media screen and (min-width:600px) {
.input-container {
width: 600px;
}
.table-container {
width: 600px;
}
}