-
Notifications
You must be signed in to change notification settings - Fork 2
/
style1.css
92 lines (78 loc) · 1.62 KB
/
style1.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
87
88
89
90
91
92
body {
font-family: Arial, sans-serif;
text-align: center;
}
/* Reset default styles */
body, nav, ul, li {
margin: 0;
padding: 0;
list-style: none;
}
/* Navbar styles */
header {
background-color: #000000;
padding: 10px;
}
nav ul li {
display: flex;
margin-right: 10px;
align-items: center;
justify-content: center;
}
nav ul li a {
text-decoration: none;
color: #333;
padding: 5px 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
nav ul li a:hover {
background-color: #333;
color: #fff;
}
.calculator {
width: 300px;
margin: 0 auto;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f7f7f7;
}
.calculator input {
width: 100%;
margin-bottom: 10px;
padding: 10px;
font-size: 18px;
border: 1px solid #ccc;
border-radius: 3px;
box-sizing: border-box;
}
.calculator button {
width: 32%;
padding: 10px;
font-size: 15px;
border: 2px solid black;
border-radius: 3px;
cursor: pointer;
background-color: white;
margin-bottom: 5px;
margin-right: 5px;
font-family: 'Press Start 2P', cursive !important;
}
.calculator button:active {
background-color: #aaa;
}
.row1 {
display: flex;
justify-content: space-evenly;
}
#display-button{
background-color: white;
color: #000;
border: 2px solid black;
font-family: 'Press Start 2P', cursive !important;
font-size: 15px;
}
.p-calculator{
font-family: 'Press Start 2P', cursive !important;
}