-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculator.css
114 lines (93 loc) · 1.74 KB
/
calculator.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
*{
margin: 0;
padding: 0;
font-family: 'sora', sans-serif;
}
body{
background-color: rgb(83, 163, 163);
}
.title-container{
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
margin-bottom: 0;
color: white;
}
.container{
width: 350px;
height: 480px;
margin: 65px auto;
background: ivory;
border-radius: 15px;
box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
header{
width: 100%;
}
.nav{
display: flex;
flex-direction: row;
background-color: white;
box-shadow: 0 10px 15px rgba(0,0,0,0.2);
padding:10px 20px;
align-items: center;
justify-content: space-between;
}
#logo{
width:100px;
}
#nav-items-container{
/* border: 1px solid red; */
margin-left: 20px;
}
.nav-items{
list-style: none;
padding:0;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
height: 100%;
}
.nav-items a{
text-decoration: none;
margin: 5px;
color: rgb(83, 163, 163);
padding: 10px;
}
.nav-items a:hover{
transform:scaleY(10);
border: 1px outset none;
color: white;
background: rgb(83, 163, 163);
border-radius: 10px;
}
#display{
border: none;
outline: none;
width:330px;
height: 80px;
font-size: 58px;
font-weight: 700;
padding: 10px;
text-align: right;
background: rgb(88, 84, 71);
border-top-left-radius: 15px;
border-top-right-radius: 15px;
}
.btns-container{
margin: 35px 35px;
}
.btn{
width: 60px;
height: 60px;
margin: 3px;
border: none;
outline: none;
cursor: pointer;
font-size: 28px;
line-height: 30px;
border-radius: 50px;
background-color: #eceded;
}