-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (67 loc) · 1.09 KB
/
style.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
* {
font-family: Ubuntu;
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
background: #686868;
}
.container {
width: 30%;
height: 75%;
display: flex;
justify-content: center;
margin-top: 10%;
border-radius: 25px;
background-image: linear-gradient(315deg, #5b6467 0%, #8b939a 74%);
box-shadow: 2px 31px 35px -15px rgba(0, 0, 0, 0.64);
padding: 10px;
}
.b64 {
width: 500px;
margin-top: 5%;
}
header h1 {
text-align: center;
color: #fff;
}
.input-container {
margin: 30px 0;
}
.btn-container {
text-align: center;
}
header p {
font-size: 1.1rem;
color: #fff;
margin: 15px 0;
text-align: center;
}
input {
width: 70%;
border: none;
background-color: #fff;
padding: 15px;
color: rgb(66, 66, 66);
font-size: 1.1rem;
border-radius: 10px;
}
input:focus {
outline: none;
}
button {
border: none;
padding: 10px 25px;
background-color: #fff;
border-radius: 10px;
font-weight: 600;
cursor: pointer;
transition: all 0.5s ease-in-out;
}
button:hover {
transform: scale(1.1);
}