-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (98 loc) · 1.67 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
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
97
98
* {
box-sizing: border-box;
margin: 0px;
padding: 0px;
}
body {
background-image: url(lava-red-coloros-stock-4680x2160-362.jpg);
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
text-align: center;
min-height: 100vh;
}
.foam {
background-color: transparent;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
flex-wrap: wrap;
border-radius: 15px;
width: fit-content;
border: 1px solid silver;
width: 420px;
gap: 20px;
padding: 30px 40px;
color: #fff;
backdrop-filter: blur(5px);
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.foorter-foam {
display: flex;
justify-content: space-between;
}
.name,
.pass {
background-color: transparent;
width: 100%;
height: 100%;
outline: none;
border-radius: 40px;
font-size: 16px;
color: #fff;
padding: 20px 45px 20px 20px;
}
.input {
width: 100%;
height: 50px;
border-radius: 40px;
}
h1 {
font-size: 36px;
}
input::placeholder {
color: #fff;
}
.foorter-foam {
gap: 100px;
}
.button {
width: 100%;
height: 45px;
background-color: #fff;
border-radius: 40px;
outline: none;
border: none;
cursor: pointer;
}
button {
width: 100%;
height: 100%;
background-image: url(lava-red-coloros-stock-4680x2160-362.jpg);
background-size: cover;
outline: none;
border: none;
border-radius: 40px;
font-size: 16px;
font-weight: 900;
cursor: pointer;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.link {
font-size: 16px;
font-weight: 700;
}
a {
text-decoration: none;
color: #fff;
}
a:hover {
color: red;
font-weight: 600;
}
button:hover {
transform: scale(1.1);
}