-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (61 loc) · 942 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
.keys{
display:grid;
grid-template: repeat(5,1fr)/repeat(4,1fr);
height: 400px;
width: 320px;
}
button{
position: relative;
left: 5px;
width: 70px;
height: 70px;
border-radius: 100%;
border-color: transparent;
background-color: white;
font-family: 'Lato', sans-serif;
font-weight: bold;
font-size: 30px;
}
button:hover{
background-color: teal;
}
.display{
width: 320px;
height: 200px;
}
.in{
position: relative;
right:15px;
}
.input{
height: 100px;
width: 320px;
font-size: 50px;
}
.result{
height: 30px;
width: 320px;
font-size: 20px;
font:#66000000;
position: relative;
top: 30px;
right:15px;
}
p{
font-family: 'Lato', sans-serif;
text-align: right;
}
.calculator{
margin: 0 auto;
width: 320px;
height: 600px;
background-color: white;
border-radius: 30px;
margin-top:100px;
}
.resultButton{
background-color: teal;
}
body{
background-color: teal;
}