-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
64 lines (56 loc) · 1.03 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
55
56
57
58
59
60
61
62
63
64
@import url('https://fonts.googleapis.com/css?family=Montserrat');
body{
padding: 75px;
background-color: rgb(0, 0, 0);
}
.calculator {
height: 540px;
width: 350px;
margin: 0 auto;
padding: 10px;
background-color: #000000;
border: 1px solid #ccc;
border-radius: 15px;
}
input[type="text"] {
width: 97%;
height: 100px;
margin-bottom: 10px;
font-size: 30px;
border: 0px;
background-color: #000000;
color: #eee;
}
.horizontal-line {
border-top: 1px solid #c2b9b9;
padding-bottom: 10px;
}
.button-row {
display: flex;
font-family: "Montserrat", sans-serif;
padding-bottom: 15px;
justify-content: space-between;
}
.button {
width: 70px;
height: 70px;
font-size: 20px;
text-align: center;
color: #eee;
line-height: 70px;
cursor: pointer;
font-weight: bold;
border-radius: 40px;
}
.button:hover {
background-color: #eccbcb;
}
.zero{
width: 160px;
}
.orange{
color: orangered;
}
.equal{
background-color: orangered;
}