-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalc.css
More file actions
82 lines (81 loc) · 1.25 KB
/
calc.css
File metadata and controls
82 lines (81 loc) · 1.25 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
body {
background-color: black;
cursor: default;
}
table {
position: absolute;
background-color: rgb(131, 125, 125);
width: 260px;
height: 450px;
border-radius: 4px;
top: 150px;
left: 500px;
}
#display {
position: absolute;
width: 200px;
height: 25px;
font-size: 26px;
text-align: right;
background-color: #bcbd95;
float: center;
left: 14px;
top: 40px;
border-radius: 10px;
}
input {
position: relative;
border-radius: 30px;
font-size: 20px;
top: 11px;
left: 10%;
padding: 15px;
outline: none;
margin: 0px ;
border: 0;
height: 50px;
width: 50px;
}
#clear {
position: relative;
background-color: #ff9fa8;
outline: none;
}
#line1 {
position: absolute;
width: 50%;
left: 15px;
top: 110px;
}
#line2 {
position: absolute;
width: 50%;
right: 115px;
top: 170px;
}
#line3 {
position: absolute;
width: 50%;
top: 230px;
left: 15px;
}
#line4 {
position: absolute;
width: 50%;
left: 15px;
top: 290px;
}
#line5 {
position: absolute;
width: 50%;
left: 123px;
top: 350px;
}
#num0 {
position: absolute;
right: 190px;
top: 350px;
}
#color {
background-color: orange;
}