-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
54 lines (47 loc) · 955 Bytes
/
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
@import url("https://fonts.googleapis.com/css2?family=Orbitron&display=swap");
.title {
font-family: "Orbitron", sans-serif;
font-size: xx-large;
display: flex;
justify-content: center;
margin-top: 10%;
}
.calculator {
background-color: #091950;
width: 400px;
height: 380px;
margin: auto;
margin-top: 10vh; /*vh = viewheight*/
border-radius: 20px;
padding: 20px;
}
.display-box {
font-family: "Orbitron", sans-serif;
background-color: rgb(250, 238, 238);
color: black;
border-radius: 5px;
width: 98%;
height: 65%;
border: solid black 1px;
}
/*id takes priority*/
#btn {
background-color: #dc1d69;
}
.button {
font-family: "Orbitron", sans-serif;
background-color: #55217a;
color: white;
width: 100%;
height: 70%;
border-radius: 5px;
outline: none;
border: solid black 1px;
}
.button:hover{
background-color: bisque;
color:#091950;
}
.button:active{
background-color: #e5e5e5;
}