-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (67 loc) · 1.33 KB
/
style.css
File metadata and controls
76 lines (67 loc) · 1.33 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
* {
margin: 0;
padding: 0;
background-color: none;
box-sizing: border-box;
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
outline: none;
}
.container {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.calculator {
background-color: rgb(104, 101, 101);
padding: 15px;
border-radius: 30px;
box-shadow: 0px 10px #545353;
}
input {
height: 50px;
width: 280px;
background-color: rgb(212, 214, 212);
box-shadow: 0px 10px rgb(194, 193, 193);
border: 50px;
border-radius: 5px;
color: rgb(43, 42, 42);
font-size: 50px;
text-align: end;
margin: auto;
margin-top: 10px;
margin-bottom: 25px;
padding: 20px;
}
#ac-button {
background-color: rgb(196, 177, 177);
}
#sign {
background-color: rgb(196, 177, 177);
}
button {
height: 50px;
width: 55px;
background-color: white;
box-shadow: 0px 5px rgb(194, 193, 193);
border: none;
border-radius: 15px;
margin: 8px;
font-size: 30px;
font-weight: bold;
}
/*equal sign are orange*/
.btn_equal {
background-color: rgb(224, 164, 51);
box-shadow: 0px 5px rgb(168, 110, 2);
}
h1 {
text-align: center;
margin-top: 60px;
margin-right: 20px;
}
h3 {
text-align: center;
margin-top: 100px;
margin-right: 20px;
}