-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
52 lines (46 loc) · 911 Bytes
/
styles.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
body {
font-family: Arial, sans-serif;
}
h1 {
display: flex;
justify-content: center;
align-items: center;
}
.calculator {
width: 250px;
height: 300px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 10px;
background-color: slategray;
}
.lineone, .linetwo, .linethree, .linefour, .calbody{
display: flex;
justify-content: center;
align-items: center;
}
input[type="text"] {
width: 100%;
background-color: whitesmoke;
border-radius: 10px;
margin-bottom: 20px;
padding: 10px;
box-sizing: border-box;
margin-top: 20px
}
input[type="button"] {
width: 40%;
padding: 10px;
margin: 5px;
border-radius: 10px;
border: 1px solid dimgray;
}
#restart {
width: 50px;
height: 20px;
margin-left: 5px;
margin-bottom: 5px;
border: 1px solid dimgray;
border-radius: 7px;
}