-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
102 lines (90 loc) · 2.2 KB
/
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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Lobster', cursive;
}
body {
font-family: sans-serif;
font-size: 25px;
width: 100%;
min-height: 100vh ;
background-color: #9c9592;
}
.headerContainer {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
margin-bottom: 100px;
}
.container{
width: 100%;
display: flex;
justify-content:center ;
align-items: center;
flex-direction: column;
}
.display {
display: flex;
background: conic-gradient(#d7d7d7, #c3c3c3, #cccccc, #c6c6c6,
#d7d7d7, #c3c3c3, #cccccc, #c6c6c6,
#d7d7d7, #c3c3c3, #cccccc, #c6c6c6,
#d7d7d7, #c3c3c3, #cccccc, #c6c6c6);
flex-direction: column;
justify-content: space-evenly;
align-items: center;
width: 400px;
height: 600px;
flex-wrap: wrap;
border: 2px solid gold;
filter: drop-shadow(0 0 1rem black);
border-radius: 20px;
}
.screen {
display: flex;
background-color: antiquewhite;
border: 3px rgb(204, 174, 2) solid;
align-items: center;
justify-content: center;
width: 300px;
height: 100px;
border-radius: 15px;
font-size: 50px;
}
.row-one ,.row-two, .row-three , .row-four{
display: flex;
width: 350px;
justify-content: space-evenly;
}
#equal {
width: 170px;
}
button{
display: flex;
justify-content: space-evenly;
align-items: center;
border-radius: 50px;
width: 60px;
height: 60px;
border-color: gold;
background:conic-gradient( #e6e9bf, #d2b5aa, #cbaea3, #d4b5ab,
#e6e9bf, #d2b5aa, #cbaea3, #d4b5ab,
#e6e9bf, #d2b5aa, #cbaea3, #d4b5ab,
#e6e9bf, #d2b5aa, #cbaea3, #d4b5ab);
color: black;
font-size: 35px;
font-weight : bold;
box-shadow: -10px 8px 20px rgba(0,0,0,0.5)
}
.key {
transition: all 0.07 ;
}
.pressed {
transform: scale(0.9);
border-color: gold;
box-shadow: -3px 8px 20px rgba(0,0,0,0.5)
}
.footer {
margin-top: 80px;
}