-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
55 lines (48 loc) · 890 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
55
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
*, *::before, *::after {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
html {
width: 100%;
height: auto;
}
img {
max-width: 100%;
}
.container {
width: 300px;
padding: 32px;
background-color: white;
display: flex;
flex-direction: column;
gap: 10px;
}
.container a {
text-decoration: none;
color: black;
font-weight: 600;
}
.container p {
color: #868484;
margin-top: 16px;
display: block;
width: 100%;
text-align: center;
font-size: 10px;
}
.container input[type="text"] {
padding: 6px 10px;
border: 1px solid #f0f0f0;
border-radius: 4px;
}
.container button {
cursor: pointer;
padding: 6px 10px;
color: white;
background-color: black;
border: 1px solid transparent;
border-radius: 4px;
}