-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
72 lines (64 loc) · 1.29 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
body {
margin: 0;
font-family: 'Roboto', sans-serif;
background-color: #000;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.calculator {
width: 300px;
background-color: #111;
border-radius: 15px;
padding: 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
text-align: center;
}
.heading {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
color: #ffa500; /* Same orange color */
font-family: 'Dancing Script', cursive; /* Handwritten style */
}
.display {
width: 100%;
height: 60px;
background-color: #222;
border-radius: 10px;
text-align: right;
padding: 10px;
font-size: 24px;
margin-bottom: 20px;
color: #fff;
font-family: 'Roboto', sans-serif;
}
.buttons {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
}
button {
height: 50px;
background-color: #333;
color: #ffa500;
border: none;
border-radius: 10px;
font-size: 18px;
font-family: 'Roboto', sans-serif;
cursor: pointer;
transition: all 0.3s ease;
}
button:hover {
background-color: #444;
}
.equals {
grid-column: span 2;
background-color: #ffa500;
color: #fff;
}
.equals:hover {
background-color: #ff9500;
}