-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
80 lines (67 loc) · 1.26 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,500;1,200;1,500&display=swap');
* {
margin: 0;
padding: 0;
outline: none;
font-family: 'Poppins', sans-serif;
}
body {
background-image: linear-gradient(#0F0C29, #302B63, #24243E);
}
main {
color: whitesmoke;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
margin: auto;
}
p {
color: rgba(245, 245, 245, 0.75);
}
#pTop {
margin-top: 50px;
margin-bottom: 150px;
font-weight: bold;
font-size: 1.3em;
}
h1 {
font-size: 2.5em;
letter-spacing: -0.3px;
margin-bottom: 35px;
text-transform: uppercase;
}
input, button {
width: 75vw;
max-width: 550px;
padding: 38px 30px;
margin-bottom: 20px;
font-size: 1em;
border: none;
box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
button {
background-color: black;
color: whitesmoke;
font-size: 1.4em;
font-weight: bold;
}
button:active {
transform: translateY(3px);
}
#pBottom {
font-size: 0.85em;
margin-top: 215px;
}
a {
text-decoration: none;
color: whitesmoke;
font-weight: bold;
text-transform: uppercase;
}
a::after {
content: ' \2198'
}
a:active {
text-decoration: underline;
}