-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
85 lines (79 loc) · 1.51 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
}
:root {
--primary-color: #7c3aed;
}
body {
font-family: "Montserrat", 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;
}
#error-message {
display: block;
font-size: larger;
margin: 1rem 0 0;
}
/* Table */
.change-table {
width: 50%;
text-align: justify;
border-collapse: collapse;
margin: auto;
}
.change-table caption {
margin: 1rem auto;
font-size: x-large;
font-weight: 500;
}
th,
td {
border: 2px solid var(--primary-color);
width: 0%;
border-collapse: collapse;
padding: 0.4rem;
}