-
Notifications
You must be signed in to change notification settings - Fork 0
/
Styles.css
54 lines (50 loc) · 1.14 KB
/
Styles.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
body {
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow-x: hidden;
flex-direction: column;
background-color: #FBAB7E;
background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
}
.calc {
padding: 20px;
border-radius: 1em;
height: 500px;
width: 400px;
margin: auto;
background-color: palevioletred;
box-shadow: 10px 10px 20px rgba(0, 0, 0, 637);
}
.display-box {
font-family: 'Orbitron', sans-serif;
background-color: white;
border: solid black 0.5px;
color: black;
border-radius: 5px;
width: 100%;
height: 55%;
outline: none;
font-size: 22px;
}
.button {
font-family: 'Orbitron', sans-serif;
background-color: black;
color: white;
border: solid black 0.5px;
width: 80px;
border-radius: 5px;
height: 60%;
outline: none;
border: none;
font-size: 30px;
cursor: pointer;
}
.button:active {
background: rgba(0, 0, 0, 568);
-webkit-box-shadow: inset 0px 0px 5px #c1c1c1;
-moz-box-shadow: inset 0px 0px 0px #d32626;
box-shadow: inset 0px 0px 5px #c1c1c1;
}