-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (67 loc) · 1.5 KB
/
style.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
*{
margin: 0px;
padding: 0px;
background-color: chocolate;
}
#container{
position: absolute;
top: 10%;
left: 10%;
border-radius: 10px;
border: 2px solid rgb(221, 219, 219);
background-color: rgb(224, 224, 224);
box-shadow: 5px 5px 5px 0px rgba(0,0,0,.75);
}
#numbers{
display: flex;
flex-direction: row;
align-items: center;
padding: 5px;
background-color: rgb(224, 224, 224);
}
.lines, #form {
background-color: rgb(224, 224, 224);
}
#result{
background-color: rgb(224, 224, 224);
font-size: 20px;
height: 25px;
padding: 5px;
color: rgb(68, 67, 67);
width: 230px;
margin: 10px;
border-radius: 10px;
box-shadow: inset 0px 0px 99px -55px rgba(0,0,0,0.67);
}
.button , .eqbutton, .nbutton, .cbutton {
background-color: rgb(58, 153, 248);
color: white;
width: 45px;
text-align: center;
line-height: 40px;
font-size: 20px;
border-radius: 10px;
display: flex;
justify-content: center;
margin: 3px;
cursor: pointer;
}
.eqbutton{
line-height: 90px;
}
.nbutton{
background-color: rgb(83, 88, 94);
}
.cbutton{
background-color: rgb(245, 114, 39);
}
#header {
color: rgb(226, 225, 224);
background-color: rgb(224, 224, 224);
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: bold; text-align: center;
font-size: 17px;
margin: 0px;
margin-top: 8px;
text-shadow: 1px 1px 3px rgb(24, 25, 26);
}