-
Notifications
You must be signed in to change notification settings - Fork 1
/
medication.css
152 lines (135 loc) · 2.56 KB
/
medication.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
.everything{
display: grid;
grid-template-columns: 2fr 2fr;
grid-template-areas: "red blue";
}
.grid-container {
display: grid;
grid-template-columns: 0.5fr 2fr 2fr 2fr 2fr 2fr 2fr 2fr;
padding: 10px;
max-height: 50vh;
margin-bottom: 50px;
}
.grid-container > div {
background-color: white;
border: 0.5px solid skyblue;
text-align: center;
font-size: 30px;
height: 90%;
padding-bottom: 10px;
}
.grid-container > div > div{
background-color: white;
border: 0.5px solid skyblue;
text-align: center;
font-size: 30px;
height: 100%;
padding-top: 10px;
}
.time > p{
font-size: 15px;
}
.container {
width: 100%;
height: 50px;
margin: auto;
padding: 10px;
}
.time{
width: 100%;
border: 2px;
font-size: 10px;
}
.red {
width: 30%;
height: 100px;
float: left;
background: red;
margin-left: 20%;
font-size: 50px;
text-align: center;
}
.blue {
width: 30%;
height: 100px;
float: left;
background: blue;
margin-right: 20%;
font-size: 50px;
text-align: center;
}
.left {
width: 50%;
height: 20%;
float: left;
text-align: center;
color: red;
}
.right {
margin-left: 50%;
height: 20%;
text-align: center;
color: blue;
}
.red_medicine{
display: grid;
grid-template-columns: auto auto auto ;
grid-template-rows: auto auto auto auto;
grid-gap: 15px;
float: left;
width: 200px;
height: 250px;
text-align: center;
color: red;
margin-left: 16%;
padding: 10px;
padding-top: 20px;
border-radius: 25px;
border: 2px solid red;
}
.red_medicine > div{
background-color: red;
border: 1px solid black;
text-align: center;
font-size: 15px;
height: 30px;
}
.red_medicine > #cap {
background-color: white;
height: 50px;
color: black;
font-size: 30px;
}
.blue_medicine{
float: right;
display: grid;
grid-template-columns: auto auto auto;
grid-template-rows: auto auto auto auto;
width: 200px;
height: 250px;
text-align: center;
color: blue;
margin-right: 20%;
padding: 10px;
padding-top: 20px;
border-radius: 25px;
border: 2px solid blue;
}
.blue_medicine > div{
background-color: blue;
border: 1px solid black;
text-align: center;
font-size: 15px;
height: 30px;
}
.blue_medicine > #cap {
background-color: white;
height: 50px;
color: black;
font-size: 30px;
}
#hand {
margin-top: 100px;
margin-left: 50%;
font-size: 30px;
}