-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (46 loc) · 807 Bytes
/
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
* {
font-family: "Dosis";
outline: none;
border: none;
}
::placeholder {
color: #fff;
opacity: 1;
}
:-ms-input-placeholder {
color: #fff;
}
::-ms-input-placeholder {
color: #fff;
}
body {
color: #fff;
background-color: #000;
text-align: center;
display: grid;
place-items: center;
min-height: 100vh;
margin: 0;
transition: 1.5s;
}
#username-field {
font-size: 60px;
}
#username-field h6 {
font-style: italic;
font-weight: normal;
}
#username-field i {
font-size: 130px;
margin: -16px 0 0 0;
position: absolute;
}
#username-field input {
text-align: center;
font-size: 80px;
border: 6px solid #fff;
background-color: transparent;
border-radius: 100px;
padding: 12px 0;
transition: 1.5s;
}