-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (59 loc) · 1.17 KB
/
style.css
File metadata and controls
59 lines (59 loc) · 1.17 KB
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
.container{
height: 500px;
width: 350px;
border: 2px solid white;
margin: 4% 0 0 35%;
border-radius: 10px;
box-shadow: 10px 10px 8px #c2c2a3;
background-color: #445749;
}
#header{
height: 80px;
width: 325px;
margin: 4% 1% 1% 3%;
background-color: white;
border: 2px solid white;
border-radius: 10px;
text-align: center;
font-size: x-large;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.footer{
display: grid;
grid-template-columns: auto auto auto auto;
margin: 0 0 0 7%;
padding: 10px;
}
.btn{
padding: 15px;
margin: 10%;
cursor: pointer;
border: 1px solid teal;
border-radius: 50px;
box-shadow: 3px 3px 3px #ccffdd;
}
.btn:hover {
background-color: black;
color: white;
transition: 0.3s ease-in-out;
}
#equal{
background-color: cornflowerblue;
color: white;
}
#add{
background-color: olivedrab;
color: white;
}
#sub{
background-color: crimson;
color: white;
}
#mul{
background-color: darkslategray;
color: white;
}
#div{
background-color: slategrey;
color: white;
}