-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresults.css
111 lines (95 loc) · 1.77 KB
/
results.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
.medicines-section {
width: 90%;
margin: 100px auto 0;
}
.medicines-section-title {
margin-left: 1em;
font-size: 0.8em;
color: #8E8E93;
}
.medicine-container:first-of-type{
margin-top: 10px;
}
.medicine-container {
width: calc(100% - 1em);
height: 60px;
padding-left: 1em;
position: relative;
display: flex;
align-items: center;
background-color: #F7F7F7;
/* border-radius: 10px; */
overflow: hidden;
}
.medicine-container:first-of-type {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.medicine-container:last-of-type {
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
.medicine-container:not(:last-child) {
border-bottom: #8E8E93 0.2px solid;
}
.medicine-image-container {
height: 75%;
aspect-ratio: 1 / 1;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.medicine-image {
height: 100%;
object-fit: cover;
}
.medicine-text-container {
margin-left: 1em;
}
.medicine-title {
font-size: 1em;
font-weight: 600;
}
.medicine-type-dose {
margin-top: 0.3em;
font-size: 0.9em;
font-weight: 300;
}
.add-button {
height: 100%;
aspect-ratio: 0.7 / 1;
position: absolute;
right: 0px;
background-color: #007AFF;
border: none;
/* border-radius: 0 10px 10px 0; */
}
.add-button img {
height: 40%;
aspect-ratio: 1 / 1;
object-fit: cover;
}
.manual-input-section {
width: 90%;
height: 50px;
margin: 50px auto 30px;
background-color: #e5e5ea;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
}
.manual-input-text {
text-align: center;
}
.manual-input-text p {
margin-bottom: 0.3em;
font-size: 0.7em;
color: #8E8E93;
}
.manual-input-text h1 {
font-size: 1em;
color: #000000;
font-weight: 500;
}