-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcpad.css
79 lines (75 loc) · 1.32 KB
/
calcpad.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
.card,
.answer-box {
border: 1px solid lightgray;
border-radius: 5px;
}
.card {
padding: 10px;
margin-bottom: 10px;
}
.interactives {
display: flex;
width: fit-content;
align-items: center;
flex-wrap: wrap;
}
.answer-box,
.attempts-and-check {
display: flex;
width: max-content;
align-items: center;
}
.answer-box,
.attempts-count,
.check-button,
.feedback {
margin: 10px;
}
.name,
.unit,
.answer-input {
background-color: rgb(232, 232, 232);
padding: 5px 3px;
}
.answer-input {
background-color: white;
border: 0px;
width: 80px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.feedback {
width: 30px;
}
.check-button {
background-color: rgb(51, 114, 223);
color: white;
padding: 5px 15px;
border-radius: 5px;
border: 0px;
cursor: pointer;
}
.check-button:hover {
background-color: rgb(8, 77, 196);
}
.check-button:active {
background-color: rgb(0, 92, 250);
border: 1px solid black;
}
.check-button:disabled {
background-color: red;
cursor: not-allowed;
}
.attempts-count {
text-decoration: underline;
color: gray;
}
.attempts-count:hover {
color: orange;
}
.attempts-count:active {
color: darkgoldenrod;
}