Skip to content

Commit 5561624

Browse files
Added styles.css file
1 parent c1d85e1 commit 5561624

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

styles.css

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
2+
3+
.calculator {
4+
padding: 10px;
5+
border-radius: 1em;
6+
height: 380px;
7+
width: 400px;
8+
margin: auto;
9+
background-color: #191b28;
10+
box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
11+
}
12+
13+
.display-box {
14+
font-family: 'Orbitron', sans-serif;
15+
background-color: #dcdbe1;
16+
border: solid black 0.5px;
17+
color: black;
18+
border-radius: 5px;
19+
width: 100%;
20+
height: 65%;
21+
}
22+
23+
.button {
24+
font-family: 'Orbitron', sans-serif;
25+
background-color: #64278f;
26+
color: white;
27+
border: solid black 0.5px;
28+
width: 100%;
29+
border-radius: 5px;
30+
height: 70%;
31+
outline: none;
32+
}
33+
34+
.button:active {
35+
background: #e5e5e5;
36+
-webkit-box-shadow: inset 0px 0px 5px #c1c1c1;
37+
-moz-box-shadow: inset 0px 0px 5px #c1c1c1;
38+
box-shadow: inset 0px 0px 5px #c1c1c1;
39+
}

0 commit comments

Comments
 (0)