-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle1.css
More file actions
58 lines (53 loc) · 909 Bytes
/
style1.css
File metadata and controls
58 lines (53 loc) · 909 Bytes
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
body
{
background-color: lightblue;
display:flex;
justify-content: center;
font-family: Arial;
margin-top: 50px;
}
.calculator_context
{
width:260px;
margin:auto;
background-color:whitesmoke;
color: white;
padding: 20px;
border-radius: 10px;
border: 2px solid black;
box-shadow: 0 0 10px;
}
h2{
margin-bottom:10px;
color: black;
}
button
{
width:50px;
height:40px;
margin:5px;
font-size: 18px;
cursor:pointer;
border:none;
background: #4facfe;
color:white;
border-radius: 5px;
padding:10px;
}
button:hover
{
background-color: lightgray;
}
input[type="text"]
{
width: 90%;
height: 40px;
border-radius: 5px;;
margin-bottom: 10px;
font-size: 20px;
padding:5px;
text-align: right;
}
#result{
text-align: right;
}