-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (55 loc) · 1.42 KB
/
style.css
File metadata and controls
59 lines (55 loc) · 1.42 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
body {
margin: 0px;
padding: 0px;
display: flex;
height: 100vh;
flex-direction: column;
justify-content: center;
align-items: center;
background: rgb(0, 0, 0);
background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(116, 233, 114, 1) 0%, rgba(93, 162, 92, 1) 0%, rgba(82, 140, 80, 1) 0%, rgba(85, 88, 149, 1) 0%, rgba(53, 147, 221, 1) 58%, rgba(215, 136, 149, 1) 100%, rgba(13, 6, 6, 1) 100%, rgba(0, 0, 0, 1) 100%, rgba(5, 135, 229, 1) 100%, rgba(4, 150, 255, 1) 100%, rgba(198, 204, 120, 1) 100%);
}
h1{
text-transform: uppercase;
font-family:Arial, Helvetica, sans-serif;
}
#container {
border: 4px solid black;
border-radius: 10px;
box-shadow: 9px 9px 40px 3px black;
}
#inp {
width: 306px;
padding: 30px 20px;
font-size: 35px;
border: none;
font-weight: bold;
background-color: black;
color: white;
}
#btn-container {
display: flex;
flex-wrap: wrap;
width: 300px;
border: 3px solid;
row-gap: 9px;
column-gap: 20px;
text-align: center;
justify-content: center;
align-items: center;
background-color: rgb(0, 0, 0);
}
.btn {
margin: 8px 0px;
line-height: 45px;
align-items: center;
height: 50px;
width: 50px;
background-color: rgb(0, 0, 0);
box-shadow: 0px 0px 5px;
font-size: 20px;
border-radius: 50%;
color: white;
box-shadow: -1px -2px 9px 0px #00806e;
font-weight: bold;
}