-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (85 loc) · 1.66 KB
/
style.css
File metadata and controls
97 lines (85 loc) · 1.66 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
body {
font-family: 'Poppins', sans-serif;
background: radial-gradient(circle at center, #0f2027, #203a43, #2c5364);
color: white;
margin: 0;
}
.calculator {
width: 350px;
margin: 70px auto;
padding: 25px;
border-radius: 20px;
backdrop-filter: blur(15px);
background: rgba(255,255,255,0.1);
box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}
#display {
width: 100%;
padding: 18px;
font-size: 26px;
text-align: right;
border-radius: 12px;
border: none;
margin-bottom: 18px;
}
.buttons button {
width: 70px;
height: 55px;
margin: 8px;
font-size: 18px;
border-radius: 12px;
border: none;
cursor: pointer;
background: rgba(255,255,255,0.15);
color: white;
transition: 0.3s;
}
.buttons button:hover {
background: rgba(255,255,255,0.3);
}
.equal {
background: #00e676 !important;
color: black;
font-weight: bold;
}
.history-btn {
display: block;
margin-top: 20px;
text-align: center;
padding: 12px;
background: #ffea00;
border-radius: 10px;
color: black;
text-decoration: none;
font-weight: bold;
}
/* History Page */
.history-container {
width: 70%;
margin: 60px auto;
background: white;
color: black;
padding: 25px;
border-radius: 15px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th,td {
padding: 12px;
border-bottom: 1px solid #999;
}
.delete-btn, .back-btn {
display: inline-block;
margin-top: 20px;
padding: 10px 15px;
text-decoration: none;
color: white;
background: red;
border-radius: 10px;
}
.back-btn {
background: #444;
}