-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (60 loc) · 1.21 KB
/
style.css
File metadata and controls
62 lines (60 loc) · 1.21 KB
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
*{
margin:0;
padding:0;
font-family: 'Poppins', sans-serif;
box-sizing: border-box;
}
body{
background-image: url(https://images.unsplash.com/photo-1609805620003-2a785a3b8a56?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80);
background-size:auto;
color:#fff;
}
.container{
margin: 15%;
width:90%;
max-width: 700px;
}
.display{
margin-top: 50px;
margin-bottom: 30px;
background: #fff;
color: #333;
display: inline-grid;
align-items: center;
justify-content: space-evenly;
padding: 26px 20px;
border-radius: 15px;
}
.container h1{
font-weight: 500;
font-size: 45px;
}
.container h1 span{
color:#d4c16c;
padding-bottom: 7px ;
}
.icon{
font-size: 20px;
margin-left: auto;
cursor:pointer;
}
.display input{
border:0;
outline:0;
font-size: 20px;
}
.container button{
margin-top: 8px;
border:1;
outline:0;
background: #d4c16c;
color: black;
font-size: 22px;
font-weight: 300;
display: flex;
align-items: center;
justify-content: center;
padding: 16px 26px;
border-radius: 10px;
cursor:pointer;
}