-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
107 lines (95 loc) · 2.18 KB
/
index.css
File metadata and controls
107 lines (95 loc) · 2.18 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
* {
margin: 0px;
padding: 0px;
}
body {
background: linear-gradient(to bottom right, purple, pink);
background-size: cover;
background-position: center;
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.calculator {
display: flex;
flex-direction: column;
height: 80vh;
width: 30vw;
background: rgba(255, 255, 255, 0.25);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);
}
.top_change {
display: grid;
grid-template-columns: 1fr 5fr;
/* grid-template-rows: 1/1fr; */
margin: 20px;
height: 30vh;
border: 2px solid black;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(2px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);
}
.box {
/* border: 2px solid black; */
}
.span_box {
grid-column: 2/3;
grid-row: 1/3;
/* border: 2px solid rgb(0, 0, 0); */
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: end;
height: 90%;
width: 90%;
}
.span_box p{
font-size: 25px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
margin: 15px;
color: white;
}
#operation {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 25px;
}
.main_fun {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
height: 60vh;
/* border: 2px solid rgba(255, 255, 255, 0.5); */
margin: 20px;
margin-top: 10px;
}
.button {
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid rgba(255, 255, 255, 0.691);
margin: 2px;
color: white;
font-size: 20px;
background-color: rgba(167, 29, 137, 0.229);
box-shadow: 0px 0px 100px rgba(255, 255, 255, 0.122);
}
.button:hover {
background: white;
color: black;
font-size: 20px;
padding: 0px;
margin: 2px;
}