-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
47 lines (42 loc) · 904 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
.title {
font-family: 'Orbitron' , 'sans-serif';
font-size: 50px;
display: flex;
justify-content: center;
margin-top: 100px;
}
.calculator {
padding: 10px;
margin: auto;
margin-top: 15vh;
width: 400px;
height: 380px;
background-color: #191b28;
border-radius: 10px;
}
.display-box {
font-family: 'Orbitron' , 'sans-serif';
background-color: white;
color:#191b28;
border-radius: 5px;
width: 100%;
height: 65%;
border: solid black 0.5px;
}
#btn {
background-color: #fb0066;
}
.button {
font-family: 'Orbitron' , 'sans-serif';
background-color: #64278f;
border: solid black 0.5px;
color: white;
width: 100%;
height: 70%;
border-radius: 5px;
outline: none;
}
.button:active {
background-color: #e5e5e5;
}