-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (68 loc) · 1.28 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
body {
margin: 0;
font-family: Helvetica, sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
/* justify-content: stretch; */
}
.container {
margin: auto;
display: flex;
flex-direction: column;
max-width: 600px;
}
.warning {
color: crimson;
border: 1.5px solid crimson;
border-left: 5px solid crimson;
display: flex;
padding: .5rem 1rem;
margin: 1.7rem 1.5rem;
justify-content: space-between;
align-items: center;
font-size: 1.1rem;
word-wrap: break-word;
}
.container h1 {
text-align: center;
font-size: 2.5rem;
}
input {
margin: 1rem .5rem;
padding: .5rem 1rem;
border-radius: .3rem;
font-size: 1.3rem;
}
label {
margin: .3rem .5rem;
font-size: 1.5rem;
}
button {
margin: 1rem .5rem;
padding: .5rem 1rem;
font-size: 1.2rem;
}
#result {
margin-top: 1.7rem;
display: flex;
flex-direction: column;
align-items: center;
}
#result p {
font-size: 1.7rem;
font-weight: 600;
}
footer {
margin-top: 3rem;
text-align: center;
justify-self: baseline;
font-size: 1.15rem;
padding: 1.5rem 0;
}
footer .social-handle {
display: flex;
justify-content: space-around;
font-size: 2.5rem;
margin-bottom: 2rem;
}