-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
61 lines (54 loc) · 1.06 KB
/
index.css
File metadata and controls
61 lines (54 loc) · 1.06 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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f1f1f1;
}
#input-container {
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: row;
gap: 10px;
margin-top: 30px;
}
#inner-container {
width: 1000px;
border-radius: 5px;
padding: 20px;
}
#main-input {
width: 100%;
font-size: 20px;
padding: 10px;
border: 1px solid #ccc;
outline: none;
}
#calculate {
width: 100%;
font-size: 20px;
padding: 10px;
border: 1px solid #ccc;
outline: none;
margin-top: 10px;
cursor: pointer;
color: black;
margin-top: 20px;
}
#operator {
font-size: 20px;
padding: 10px;
border: 1px solid #ccc;
outline: none;
appearance: none;
}
#output {
margin-top: 10px;
}