-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (84 loc) · 1.58 KB
/
style.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
* {
padding: 0;
margin: 0;
}
.display {
background-color: #191919;
border-radius: 20px 20px 0 0;
color: #fff;
width: 100%;
height: 150px;
padding: 10px;
margin-bottom: 25px;
font-size: 40px;
font-family: "Montserrat", sans-serif;
display: flex;
flex-direction: column;
align-items: end;
box-shadow: 0px 0px 10px 0px #080808;
clip-path: 0px 0px -25px 0px;
}
.message {
width: 100%;
flex-basis: 90px;
}
.number {
/* border: 2px solid black; */
width: 100%;
text-align: right;
}
body {
background: linear-gradient(90deg, #29091fe1, #A160FB, #1a0614e1);
height: 100vh;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
border-radius: 25px;
margin-top: 100px;
margin-right: auto;
margin-left: auto;
width: 320px;
background-color: rgb(25, 25, 25);
padding-bottom: 25px;
box-shadow: 0px 0px 5px #080808, 0px 0px 25px #202020;
}
input {
width: 70%;
margin: 10px;
padding: 40px 10px;
font-size: 50px;
border-radius: 20px;
border: none;
background-color: #f5f4f2;
font-family: Arial, Helvetica, sans-serif;
margin-bottom: 20px;
}
input:active {
border: none;
}
button {
margin: 10px;
width: 50px;
height: 50px;
background-color: rgb(25, 25, 25);
border-radius: 12px;
border: none;
color: #fff;
font-size: large;
font-family: "Montserrat", sans-serif;
box-shadow: 8px 8px 16px #0b0b0b, -8px -8px 16px #1d1d1d;
}
button:hover {
cursor: pointer;
}
/* #darker {
background-color: rgba(202, 114, 6, 0.879);
} */
.equal {
background-color: #a160fb;
}
.transparent {
color: #ffffff50;
}