-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (66 loc) · 1.5 KB
/
Copy pathstyle.css
File metadata and controls
73 lines (66 loc) · 1.5 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
@import url('https://fonts.googleapis.com/css2?family=Bad+Script&family=Poppins:ital,wght@1,300&display=swap');
html,
body {
background-color: rgb(31, 27, 27);
height: 100%;
width: 100%;
/* display: flex; */
justify-content: center;
align-items: center;
font-family: 'Bad Script', cursive;
font-family: 'Poppins', sans-serif;
}
.calculator-container {
text-align: center;
border: 10px solid rgb(83, 58, 100);
border-radius: 10px;
padding: 15px;
margin: 0 auto;
width: 312px;
}
h1{
margin: 9px;
}
.input {
width: 100%;
border: none;
text-align: right;
}
.button {
font-size: 18px;
width: 60px;
padding: 10px;
margin: 5px;
border: 1px solid rgb(129, 127, 127);
border-radius: 25px;
cursor: pointer;
background-color: rgb(75, 73, 73);
color: rgb(238, 156, 25);
transition: background-color 0.3s, transform 0.2s;
/* position: absolute; */
/* top: -30px; */
}
.button:hover {
background-color: rgb(112, 134, 137);
transform: scale(1.1);
}
.button:secondlast-child {
display: none;
}
.button:last-child {
left: 70px; /* Position the "x" button above "8" */
}
.row {
display: flex;
margin: 8px;
align-items: center;
}
.row input {
width: 250px;
font-size: 24px;
margin: 0;
padding: 7px;
border: 2px solid rgb(129, 127, 127)k;
border-radius: 15px;
background-color: rgb(218, 215, 215);
}