generated from 2KAbhishek/bare-minimum
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
53 lines (46 loc) · 909 Bytes
/
styles.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
table {
margin-left: auto;
margin-right: auto;
width: 90%;
max-width: 800px;
border: 5px solid rgba(24, 24, 24, 0.891);
border-radius: 10px;
box-shadow: -8px 12px rgba(38, 36, 36, 0.344);
}
tr {
height: 15vmin;
}
td {
height: 100px;
text-align: center;
border: none;
}
input {
height: 85%;
width: 95%;
border-radius: 10px;
cursor: pointer;
font-family: monospace;
box-shadow: -3px 5px rgba(38, 36, 36, 0.344);
}
input[type="button"] {
font-size: 3.5em;
background-color: eee;
}
input[type="text"] {
text-align: right;
font-size: 4em;
cursor: default;
background-image: linear-gradient(
to right,
rgba(24, 148, 44, 0.583),
rgba(24, 148, 45, 0.234)
);
border: 3px solid rgba(7, 49, 14, 0.72);
}
.sign {
background-color: #bbb;
}
#equals {
background-color: rgba(226, 32, 32, 0.481);
}