-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (46 loc) · 1.16 KB
/
style.css
File metadata and controls
53 lines (46 loc) · 1.16 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
body {
height: 100%;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
display: flex;
justify-content: center;
align-items: center;
}
.container {
height: auto;
width: 300px;
margin: 15% 15px 15px 15px;
border-radius: 15px;
background-color: #cfc7c6;
border: .2px solid rgb(2, 0, 0);
font-family: 'Heebo', sans-serif;
text-align: center;
position: relative;
justify-self: center;
border: 1px solid rgba(255, 255, 255, 0.349);
border-bottom: none;
backdrop-filter: blur(5px);
background: radial-gradient(at top, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.25));
}
p {
font-size: 2em;
}
input[type=text] {
border: 1px solid rgba(255, 255, 255, 0.349);
border-radius: 5px;
background-color: #cfc7c6;
background: radial-gradient(at top, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.25));
}
input[type=text]:focus {
background: radial-gradient(at top, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.25));
}
#btn {
border: 1px solid rgba(255, 255, 255, 0.349);
border-radius: 5px;
background-color: #cfc7c6;
background: radial-gradient(at top, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.25));
}
#btn:hover {
background-color: whitesmoke;
}