-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalci.css
More file actions
112 lines (74 loc) · 1.57 KB
/
calci.css
File metadata and controls
112 lines (74 loc) · 1.57 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
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
section {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
body {
background-image: url(https://t3.ftcdn.net/jpg/02/16/53/96/360_F_216539624_iy8PCnvHwEfVt9Xd18EgBJoGZuJ0qy0P.jpg);
}
td {
border: 0px;
width: 40px;
height: 30px;
margin: -2px;
}
button {
display: flex;
border: 0px solid black;
padding: 30px;
padding-left: 30px;
align-items: center;
justify-content: flex-start;
padding-right: 30px;
background-color: white;
margin: -2px;
font-size: medium;
font-weight: bold;
font-family: 'Roboto', sans-serif;
letter-spacing: -1px;
}
.zero {
border-bottom-left-radius: 15px;
}
table {
background-color: white;
margin: 75px;
box-shadow: 5px 5px 5px grey;
margin-top: 1px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
border: 2px solid black;
width: 303px;
/* margin-top:25px ; */
}
.dot {
font-size: larger;
font-weight: bold;
}
.equaltoo {
background-color: #fda22c;
border-radius: 10px;
}
button:hover {
background-color: #e5e5e5;
}
input {
width: 300px;
/* margin-top: 75px; */
height: 50px;
box-shadow: 5px 5px 5px grey;
border: 0px;
background-color: black;
color: white;
font-size: large;
font-weight: bold;
font-family: 'Roboto', sans-serif;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
margin-top: 130px;
}
.equaltoo:hover {
background-color: #f48c06;
cursor: pointer;
}