-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (86 loc) · 2.1 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
* {
margin: 0;
padding: 0;
outline: none;
box-sizing: border-box;
font-family: 'Helvetica';
}
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: hsla(0, 100%, 50%, 1);
background-image:
radial-gradient(at 40% 20%, hsla(28, 100%, 74%, 1) 0px, transparent 50%),
radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 1) 0px, transparent 50%),
radial-gradient(at 0% 50%, hsla(355, 100%, 93%, 1) 0px, transparent 50%),
radial-gradient(at 80% 50%, hsla(340, 100%, 76%, 1) 0px, transparent 50%),
radial-gradient(at 0% 100%, hsla(22, 100%, 77%, 1) 0px, transparent 50%),
radial-gradient(at 80% 100%, hsla(242, 100%, 70%, 1) 0px, transparent 50%),
radial-gradient(at 0% 0%, hsla(343, 100%, 76%, 1) 0px, transparent 50%);
}
.container{
background: rgba(255, 255, 255, 0.24);
border-radius: 10px;
padding: 20px 30px;
border: 2px solid #000;
text-align: center;
min-width: 400px;
backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(2px);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.container i{
font-size: 100px;
margin-bottom: 10px;
}
h1{
font-size: 28px;
margin-bottom: 20px;
color: #333;
}
label{
text-align: left;
font-size: 15px;
font-weight: 500;
margin: 10px 0;
display: block;
}
input, textarea{
width: 100%;
padding: 8px;
margin-bottom: 15px;
border: 2px solid #000;
border-radius: 5px;
font-size: 14px;
color: #000;
background-color: transparent;
font-weight: 500;
}
input::placeholder{
color: #222;
}
.buttons{
display: flex;
gap: 10px;
}
button{
width: 100%;
color: #000;
border: 2px solid #000;
border-radius: 5px;
padding: 8px;
font-weight: 500;
background-color: transparent;
cursor: pointer;
transition: all 0.3s ease;
}
button:hover{
background-color: #000;
color: #fff;
}
textarea{
resize: none;
}