-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcalc.css
More file actions
95 lines (87 loc) · 1.8 KB
/
calc.css
File metadata and controls
95 lines (87 loc) · 1.8 KB
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
h1 {
font-size: 5rem;
text-decoration: underline;
}
.container,
.btn {
display: flex;
align-items: center;
justify-content: center;
margin: 5em auto;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin: 0;
}
#no,
#no1 {
border: none;
border-bottom: 2px solid blue;
/* width:fit-content; */
max-width: 5.9vw;
margin-right: 1.46vw;
/* margin-top:100px; */
scroll-behavior: none;
}
* {
background: white;
color: skish-blue;
font-size: 48px;
}
button {
margin-right: 2.2vw;
}
.btn p {
border-bottom: 2px solid blue;
}
/* Button */
.button-45 {
align-items: center;
background-color: #ffe7e7;
background-position: 0 0;
border: 2px solid #fee0e0;
border-radius: 11px;
box-sizing: border-box;
color: #d33a2c;
cursor: pointer;
display: flex;
font-weight: 700;
line-height: 33.4929px;
list-style: outside url(https://www.smashingmagazine.com/images/bullet.svg) none;
padding: 2px 12px;
text-align: left;
text-decoration: none;
text-shadow: none;
text-underline-offset: 1px;
transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
white-space: nowrap;
word-break: break-word;
font-size: 14px;
}
.button-45:active,
.button-45:hover,
.button-45:focus {
outline: 0;
}
.button-45:active {
background-color: #d33a2c;
box-shadow: rgba(0, 0, 0, 0.12) 0 1px 3px 0 inset;
color: #ffffff;
}
.button-45:hover {
background-color: #ffe3e3;
border-color: #faa4a4;
}
.button-45:active:hover,
.button-45:focus:hover,
.button-45:focus {
background-color: #F08080;
box-shadow: rgba(0, 0, 0, 0.12) 0 1px 3px 0 inset;
color: #ffffff;
}