blob: 9e81f2669294199067b610aec261378f06b90a4b (
plain)
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
153
154
|
.capture-interface {
//background-color: whitesmoke !important;
width: 450px;
button {
background: #315a96;
outline: none;
border-radius: 5px;
border: 0px;
color: #fcfbf7;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 75%;
padding: 10px;
margin: 10px;
transition: transform 0.2s;
margin: 2px;
}
}
.capture-t1 {
display: flex;
justify-content: left;
align-items: center;
font-size: 20px;
font-family: 'Roboto';
font-weight: 600;
color: black;
.recordButtonOutline {
border-radius: 100%;
width: 25px;
height: 25px;
margin-right: 10px;
border: solid 1px #a94442;
display: flex;
align-items: center;
justify-content: center;
}
.recordButtonInner {
border-radius: 100%;
width: 70%;
height: 70%;
background: #a94442;
}
}
.capture-t2 {
font-size: 12px;
padding-right: 15px;
color: black;
margin-top: 10px;
margin-bottom: 10px;
/* right: 135; */
// position: absolute;
// left: 243;
}
.capture-block {
display: block;
padding-bottom: 8px;
padding-top: 6px;
.capture-block-title {
font-size: 16;
font-weight: bold;
text-align: left;
color: black;
width: 80px;
margin-right: 50px;
margin-bottom: 5px;
}
.capture-block-list {
height: 135px;
width: calc(100% + 15px);
overflow: scroll;
}
.capture-block-radio {
font-size: 12;
display: block;
font-weight: normal;
.radio-container {
display: flex;
justify-content: left;
align-items: center;
font-size: 13px;
font-family: 'Roboto';
}
}
.list-item {
display: flex;
height: 25px;
font-family: 'Roboto';
font-size: 13px;
.number {
width: 20px;
height: 20px;
display: flex;
justify-content: center;
align-items: center;
background-color: #bddbe8;
border-radius: 100%;
font-weight: 800;
margin-right: 5px;
}
}
.buttons {
display: flex;
position: absolute;
bottom: 0px;
right: 15px;
justify-content: flex-end;
align-items: center;
height: 60px;
.save {
cursor: pointer;
width: 80px;
height: 40px;
font-size: 14px;
display: flex;
font-weight: bold;
justify-content: center;
align-items: center;
background: #337ab7;
color: whitesmoke;
border-radius: 5px;
text-transform: uppercase;
}
.cancel {
cursor: pointer;
width: 80px;
height: 40px;
font-size: 14px;
display: flex;
font-weight: 100;
justify-content: center;
align-items: center;
background: #ccc;
color: black;
border-radius: 5px;
text-transform: uppercase;
margin-left: 10px;
}
}
}
|