-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
61 lines (55 loc) · 1.07 KB
/
styles.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
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap");
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
}
:root {
--primary-color: #7c3aed;
}
body {
font-family: "Work Sans", sans-serif;
min-width: 100vw;
}
/* Container */
.container {
margin: 4rem auto 8rem;
text-align: center;
}
.heading {
color: var(--primary-color);
}
.description {
font-size: larger;
margin: 1rem;
}
.input-label {
display: block;
font-size: large;
font-weight: 600;
}
.input {
font-size: 14px;
outline: #fff;
padding: 0.6rem 1rem;
margin: 1rem;
border: 2px solid var(--primary-color);
border-radius: 0.5rem;
width: 100%;
max-width: 258px;
}
#check-button {
background: var(--primary-color);
border: none;
color: #fff;
padding: 0.7rem 1rem;
border-radius: 0.5rem;
font-size: large;
cursor: pointer;
outline: #fff;
margin: auto;
display: block;
}