-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
68 lines (58 loc) · 1.03 KB
/
styles.css
File metadata and controls
68 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
header {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
}
.heading-wrapper {
flex: 1;
}
.heading-wrapper p {
text-align: center;
}
.photo-wrapper {
margin-right: 5%;
}
#lab-btn-wrapper {
display: flex;
grid-column: 2 / 3;
grid-row: 1 / 2;
align-items: center;
justify-content: center;
}
.lab-btn {
margin: 0.5%;
border-radius: 5px;
height: 50px;
width: 10%;
cursor: pointer;
}
#side-btn-wrapper {
grid-column: 1 / 2;
grid-row: 2 / 3;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 500px;
}
.side-btn {
margin: 5%;
height: 7.5%;
width: 90%;
border-radius: 5px;
cursor: pointer;
}
#output {
grid-column: 2 / 3;
grid-row: 2 / 3;
padding: 25px;
border: 1px solid #aaa;
text-align: left;
width: 95%;
}
.wrapper {
display: grid;
grid-template-columns: 20% 80%;
grid-template-rows: 100px auto;
}