-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
91 lines (82 loc) · 1.76 KB
/
stylesheet.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
*{
margin: 0%;
padding: 0%;
box-sizing: border-box;
font-style: gotham;
outline: none;
}
body{
background-image: linear-gradient(to right, #ffb8f3, #efa1f3, #da8df5, #be7bf9, #986cff);
}
.main{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.upper-section{
background-color: #ecf0f3;
padding: 15px;
border-radius: 30px;
box-shadow: inset 5px 5px 12px #ffffff,
5px 5px 12px rgb(0,0,0,.16);
display: grid;
grid-template-columns: repeat(4,68px);
}
input{
grid-column: span 4;
height: 70px;
width: 260px;
background-color: #ecf0f3;
box-shadow: inset -5px -5px 12px #ffffff,
inset 5px 5px 12px rgb(0,0,0,.16);
border: none;
border-radius: 30px;
color: rgb(70, 70, 70);
font-size: 50px;
text-align: end;
margin:auto;
margin-top: 40px;
margin-bottom: 30px;
padding: 20px;
}
button{
height: 48px;
width: 48px;
background-color: #ecf0f3;
box-shadow: -5px -5px 12px #ffffff,
5px 5px 12px rgb(0,0,0,.16);
border: none;
border-radius: 30px;
margin: 8px;
font-size: 16px;
}
button:hover{
background-color: #c826fe;
transition: .3s ease-out;
transform: scale(1.1, 1.1);
color: #ffffff;
}
.equal{
width: 110px;
border-radius: 30px;
background-color: #ecf0f3;
box-shadow: -5px -5px 12px #ffffff,
5px 5px 12px rgb(0,0,0,.16);
}
footer{
color: rgb(253, 253, 253);
padding: -30px 0;
font-family: gotham;
text-align: center;
font-size: 31px;
}
.copyright{
margin:40px 40px 40px 40px;
font-size: 20px;
}
.copyright a{
font-size: 16px;
color: #e73a3a;
font-weight: 500;
}