-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (47 loc) · 863 Bytes
/
Copy pathstyle.css
File metadata and controls
51 lines (47 loc) · 863 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
.container{
margin: auto;
}
h1{
font-size: 50px;
font-family: Arial, Helvetica, sans-serif;
}
.calc{
height: 370px;
background: #3d4543;
padding: 10px;
border-radius: 20px;
display: inline-block;
}
#answer {
background: #08b84bdc;
width: 370px;
height: 80px;
color: #000;
border-radius: 10px;
padding-right: 10px;
margin-bottom: 10px;
text-align: right;
letter-spacing: 1px;
}
input{
font-size: 30px;
width: 65px;
height: 55px;
color: #fff;
background:#6f6f6f;
border-radius: 10px;
margin: 5px;
outline: none;
border: 0px solid;
}
input[type="button"]:hover{
cursor: pointer;
background: #fff;
color: #000;
}
.btn-red{
background-color: red;
}
.btn-blue{
background-color: skyblue;
}