-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
124 lines (111 loc) · 2.14 KB
/
styles.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body, html {
padding: 0;
margin: 0;
flex-direction: column;
display: flex;
align-items: center;
font-family: Arial, sans-serif;
background-color: black;
height: 100%;
width: 100%;
justify-content: space-between;
overflow-x: hidden;
}
header {
background-color: #333;
color: #fff;
width: 100vw;
text-align: center;
margin: 0;
padding: 0;
box-sizing: border-box;
}
header h1 {
margin: 0;
padding: 10px 0;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
flex-grow: 1;
justify-content: flex-start;
width: 100%;
height: calc(100vh - 40px);
margin-top: 0;
}
#petriDish {
width: 70vw;
height: 50vh;
margin-top: 0;
position: relative;
background-color: #d3ffff;
border: 1px solid #ccc;
border-radius: 10px;
}
.toolbar-container {
display: inline-flex;
justify-content: center;
}
#toolbar {
display: inline;
background-color: rgb(240, 240, 240);
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-top: 20px;
margin-right: 10px;
height: 75%;
}
#clearButton {
padding: 5px;
max-height: 5vh;
cursor: pointer;
}
#statistics {
display: inline-block;
background-color: rgb(240, 240, 240);
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-top: 20px;
min-width: 120px;
height: 75%;
}
#statistics h2 {
font-size: 14px;
margin-top: 0;
margin-bottom: 10px;
text-align: center;
}
#statistics p {
font-size: 12px;
margin: 5px 0;
}
.microbe {
width: 20px;
height: 20px;
margin: 5px auto;
border-radius: 50%;
border-style: solid;
border-width: 1px;
cursor: grab;
}
.dish-microbe {
width: 20px;
height: 20px;
position: absolute;
border-radius: 50%;
border-style: solid;
border-width: 1px;
}
footer {
color: #878787;
font-family: 'Times New Roman', Times, serif;
font-size: 9pt;
width: 100%;
text-align: center;
padding: 15px;
}