-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (74 loc) · 1.22 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
body {
display: flex;
justify-content: center;
background-color: #97d9e1;
}
.frame {
font-size: 24px;
background-color: white;
max-width: 500px;
border-radius: 20px;
padding: 2%;
margin: 40px 20px 20px 20px;
}
button {
color: white;
border-radius: 10px;
width: 50px;
height: 50px;
border: none;
margin: 5px 5px;
box-shadow: 3px 3px 3px #cccccc;
font-size: 30px;
background-color: #3f4557;
}
button:active {
color: #f484a2;
}
button:focus {
outline: 0;
}
button:hover {
background: linear-gradient(145deg, #6e66f2, #f484a2);
}
.top {
flex-direction: row;
display: flex;
justify-content: center;
}
.functionbox {
display: inline-block;
}
output {
font-size: 20px;
padding: 5px 8px;
color: white;
border-radius: 8px;
width: 180px;
height: 26px;
display: block;
background-color: #f484a2;
margin-top: 12px;
margin-bottom: 20px;
box-shadow: 1px 2px 2px #b7c0c4;
}
.buttonclear {
margin-right: 10px;
margin-left: 0;
border-radius: 50px;
}
.operator {
background-color: #6e66f2;
}
@media screen and (min-width: 700px) {
button {
width: 90px;
height: 90px;
}
output {
width: 300px;
height: 60px;
margin-top: 20px;
font-size: 40px;
}
}