-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (93 loc) · 1.66 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
body {
/* background-color: #3AAFA9; */
background-color: #3AAFA9;
margin: 0 auto;
font-family: 'Montserrat', sans-serif;
}
header {
font-size: 40px;
color: #27363B;
text-transform: upperCase;
font-weight: 700;
margin-bottom: 30px;
/* text-shadow: -1.5px 0 #27363B, 0 1.5px #27363B, 1px 0 #27363B, 0 -1px #27363B; */
}
input {
width: 300px;
border: none;
border-radius: 5px;
padding: 20px;
font-size: 18px;
color: #425E5E;
margin: 20px;
box-shadow: 0px 3px 7px 0px rgb(0 0 0 / 15%);
outline: none;
}
p {
color: #425E5E;
font-size: 20px;
/* white-space: pre-line; */
padding: 20px;
}
.description {
color: #425E5E;
/* font-weight: 400; */
font-style: italic;
font-size: 20px;
margin: 0;
}
.box {
margin: 100px auto 0;
padding: 30px;
text-align: center;
min-height: 300px;
max-width: 500px;
border-radius: 5px;
background: #f5f5f5;
box-shadow: 0px 3px 7px 0px rgb(0 0 0 / 15%);
margin-bottom: 120px;
}
@media (max-width: 600px) {
.box {
width: 100%;
}
}
.instruction {
font-size: 16px;
margin: 0;
}
.result {
font-size: 18px;
color: #27363B;
margin: 0;
line-height: 1.7;
}
.paragraph {
font-size: 22px;
padding: 0;
margin: 0;
font-weight: 900;
text-transform: upperCase;
}
footer {
text-align: center;
height: 80px;
width: 100vw;
position: fixed;
bottom: 0;
background-color: #27363B;
}
.footerParagraph {
margin: 0;
}
img {
max-width: 400px
}
.hidden {
display: none;
}
.errorMessage {
color: crimson;
font-size: 14px;
margin: 0
}