-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.css
92 lines (81 loc) · 1.8 KB
/
index.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
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
* {
text-align: center;
}
h1 {
font-size: 50px;
color: white;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
font-weight: 300;
}
body {
background-color: #1f1f1f;
text-align: center;
}
.grid-item {
border: 0;
outline: 0;
width: 60px;
height: 60px;
box-shadow: -8px -8px 15px rgba(255, 255, 255, 0.2),
5px 5px 15px rgba(0, 0, 0, 0.2);
background: transparent;
color: rgb(167, 163, 163);
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-size: 30px;
}
.grid-item:hover {
background-color: rgba(76, 71, 71, 0.2);
}
.grid-item1 {
border: 0;
outline: 0;
width: 60px;
height: 60px;
box-shadow: -8px -8px 15px rgba(248, 74, 74, 0.3),
5px 5px 15px rgba(0, 0, 0, 0.2);
background-color: rgb(232, 61, 61);
color: white;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-size: 25px;
}
.grid-item1:hover {
background-color: rgb(239, 106, 106);
}
.container {
text-align: center;
margin-top: 23px;
}
table {
margin-left: 30px;
margin-top: 15px;
margin-bottom: 15px;
}
input {
border-radius: 21px;
border: 5px solid #000000;
font-size: 30px;
height: 60px;
width: 350px;
background-color: rgba(109, 104, 104, 0.474);
color: aliceblue;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: 200;
}
button {
border-radius: 50%;
font-size: 40px;
background: white;
width: 102px;
height: 100px;
margin: 6px;
}
.calculator {
border: 4px solid black;
background-color: #1f1f1f;
padding: 23px;
border-radius: 53px;
display: inline-block;
}