-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (55 loc) · 1009 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');
:root{
--primary-color: #D62839;
--dark-text: #A6B07E;
--off-white: #f1f5f9;
}
body{
font-family: 'Caveat', cursive;
margin: 0 auto;
font-size: 1.4rem;
max-width: 95%;
width: 100%;
}
hr {
margin: 1.5rem 0;
}
/*------- header --------*/
.hero {
padding: 2rem;
}
.hero .hero-img {
max-width: 300px;
display: block;
margin: auto;
}
.hero .hero-heading {
text-align: center;
color: var(--dark-text);
padding-top: 1rem;
}
.hero .heading-inverted {
color: var(--primary-color)
}
/*------ textarea --------*/
textarea {
display: block;
margin: auto;
height: auto;
}
/*------- button --------*/
button {
display: block;
margin: 1rem auto;
padding: 0.5rem 1rem;
background: var(--primary-color);
border: none;
color: white;
font-family: 'Caveat', cursive;
font-size: 1.4rem;
font-weight: bolder;
}
/*------- output --------*/
.output {
display: block;
}