-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (83 loc) · 1.91 KB
/
style.css
File metadata and controls
96 lines (83 loc) · 1.91 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
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
font-weight: 500;
font-style: normal;
letter-spacing: 2px;
}
body {
overflow: hidden;
width: auto;
height: 100vh;
background-color: #232323;
display: flex;
align-items: center;
}
.container {
margin: auto;
background: #1C1C1C;
border-radius: 40px;
border: 1px solid #7F6D16;
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
gap: 15px;
padding: 18px;
max-width: fit-content;
box-shadow: 2px 0px 50px 0px rgba(103, 230, 68, 0.50);
}
.btn button {
margin-right: 8px;
width: 70px;
height: 70px;
padding: 20px;
border-radius: 100%;
background-color: #1C1C1C;
color: white;
}
.first-row button {
background-color: #28282B;
}
.btn button:last-child {
background-color: #F48020;
font-size: 20px;
}
.last-row button:first-child {
border-radius: 40px !important;
width: 12em;
}
.input-container input[type='text'] {
text-align: right;
padding: 10px;
font-size: 30px;
color: white;
width: 100%;
margin-bottom: 22px;
height: 80px;
border-radius: 15px;
border: none;
outline: none;
background: #353935;
box-shadow: 8px 5px 15px 2px rgba(0, 0, 0, 0.30) inset;
}
@media screen and (max-width : 485px) {
.container {
width: 80vw;
}
.btn button {
margin-right: 8px;
width: 50px;
height: 50px;
padding: 10px;
}
.last-row button:first-child {
width: 9em;
}
}
h1{
color: white;
}