-
Notifications
You must be signed in to change notification settings - Fork 11
/
styles.css
74 lines (62 loc) · 1.16 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
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(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 10px;
padding: 20px;
text-align: center;
}
h1 {
color: white;
}
.calculator {
background: rgba(255, 255, 255, 0.15);
border-radius: 10px;
padding: 20px;
}
input {
width: 100%;
height: 40px;
font-size: 1.5em;
margin-bottom: 2rem;
border: none;
outline: none;
}
.buttons {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-column-gap: 10px;
grid-row-gap: 15px;
}
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;
}