forked from MohitNamdev22/CalcMate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
86 lines (75 loc) · 1.45 KB
/
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
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
body {
background: linear-gradient(to bottom right, #4a69bb, #6a98e7);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.container {
background: rgba(30, 29, 29, 0.051);
backdrop-filter: blur(10px);
border-radius: 10px;
padding: 20px;
width: 55%;
text-align: center;
box-shadow: 10px 10px 15px #2d2727,
-5px -5px 15px #fcf9f9;
}
h1 {
color: white;
}
.calculator {
background: rgba(255, 255, 255, 0.15);
border-radius: 10px;
padding: 20px;
}
input {
width: 100%;
height: 45px;
font-size: 1.5em;
color: #0e0a0a;
margin-bottom: 2rem;
border: none;
outline: none;
}
.screen #display{
text-align: right ;
padding-right: 0.3em;
box-shadow: inset 4px 4px 5px #2d2727,
inset -4px -4px 5px #fcf9f9 ;
}
.buttons, .buttons2 {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-column-gap: 10px;
grid-row-gap: 15px;
}
.buttons2{
display: none;
}
button {
width: 100%;
border: none;
outline: none;
padding: 20px 5px;
font-size: 1.2em;
background-color: #ddd;
cursor: pointer;
border-radius: 5px;
}
button:hover {
background-color: #ccc;
}
/* Added Some Styling */
.operator{
background-color: #2f2f2f;
color: #fff;
}
.operator:hover{
background-color: #5b5b5b;
}
.fa-delete-left{
font-size: 1.3em;
}