-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
68 lines (57 loc) · 1.11 KB
/
app.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: linear-gradient(45deg, #2a1d1d, #1f2732);
}
.calculator{
border: 1px solid #717377;
padding: 30px;
border-radius: 20px;
box-shadow: 0px 3px 15px rgba(113,115,119,0.8);
padding-top: 40px;
}
#input {
text-align: right;
width: 310px;
height: 60px;
background: transparent;
margin-bottom: 10px;
box-shadow: 0px 3px 15px rgba(113,115,119,0.8);
border-radius: 5px;
cursor: pointer;
color: white;
font-size: xx-large;
border: none;
outline: none;
}
#input::placeholder{
color:white;
font-size: xx-large;
}
button {
width: 60px;
height: 60px;
margin: 8px;
border-radius: 50%;
cursor: pointer;
background: transparent;
border: none;
color: white;
font-size: x-large;
box-shadow: -8px -8px 15px rgba(113,115,119,0.5);
}
.op{
color: rgb(153, 255, 0);
}
.equal{
background-color: orange;
}