-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (48 loc) · 916 Bytes
/
style.css
File metadata and controls
54 lines (48 loc) · 916 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
.calc-body{
margin: auto;
width: 400px;
height: 600px;
border: 1px;
border-style: double;
border-color: #fff;
}
.display{
width: 394px;
height: 70px;
margin-bottom: 20px;
font-size: 20px;
text-align: right;
pointer-events: none;
background-color: #fff;
}
.btn{
width: 84px;
height: 100px;
margin-left: 10px;
margin-bottom: 10px;
outline: none;
border-radius: 20px;
border-style: double;
border-color: #fff;
cursor: pointer;
background-color: #fff;
}
.clr{
width: 380px;
height: 50px;
margin: 10px;
outline: none;
border-radius: 20px;
border-style: double;
border-color: #fff;
cursor: pointer;
background-color: #fff;;
}
body{
background: linear-gradient(#e66465, #9198e5, #00bdff);
}
@media only screen and (max-width: 600px) {
body {
background: linear-gradient(#e66465, #9198e5, #00bdff);
}
}