-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (49 loc) · 1.24 KB
/
style.css
File metadata and controls
52 lines (49 loc) · 1.24 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
@import url('https://fonts.googleapis.com/css2?family=Acme&family=Assistant:wght@600&family=Permanent+Marker&display=swap');
*{ padding: 0px;
margin: 0px;
box-sizing: border-box;
}
.calculator {
background-color: rgb(117, 54, 94);
text-align:center;
margin: 10px auto;
display: inline-block;
border-radius: 15px;
border: 12px solid rgb(12, 75, 151);
}
button{
background-color: salmon;
width:80px;
height:80px;
font-size:40px;
margin:2px;
border-radius:25px;
border:5px solid rgb(142, 172, 209);;
font-family: 'Assistant', sans-serif;
/* font-family: 'Acme', sans-serif; */
/* font-family: 'Permanent Marker', cursive;
font-family: 'Permanent Marker', cursive; */
}
.container{
background-color: lightcyan;
text-shadow: -2px -1px black;
text-align:center;
margin: 0px auto;
}
input{
border-radius:8px;
width: 350px;
font-size:50px;
border:8px solid rgb(133, 194, 92);
font-family: 'Assistant', sans-serif;
}
h1 {
text-align: center;
font-family: monospace;
font-size: 50px;
background-color: aquamarine;
/* background-color: white; */
border: 2px solid forestgreen;
box-shadow: 9px 12px black;
border-radius: 5px;
}