forked from PrestonHager/EmailWriter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (93 loc) · 1.56 KB
/
style.css
File metadata and controls
106 lines (93 loc) · 1.56 KB
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
body {
box-shadow: 0 0 0.1em 0 rgba(0,0,0,0.3);
margin: 1em auto;
flex: 1;
padding: 0;
position: relative;
font-family: 'Nunito', 'Avenir', sans-serif;
max-width: 40em;
}
div#button-wrapper {
position: absolute;
right: 0;
top: 0;
padding: 1em;
}
button.action-button {
background-color: #38BFE7;
border: none;
padding: 0.5em 1em;
box-shadow: 1px 1px 0.2em;
cursor: pointer;
}
div#header {
padding-top: 1em;
background: linear-gradient(45deg,#B4E6F6,#E6F7FC);
}
div.img-wrapper {
display: flex;
margin: 1em auto;
max-width: 27.5em;
}
.logo-text {
display: inline;
font-size: 4.5em;
font-weight: 700;
color: #38BFE7;
margin: auto 0;
}
#text-title {
text-transform: uppercase;
text-align: center;
background-color: #153570;
color: white;
padding: 0.5em 0;
}
div#content {
margin: 1em auto;
max-width: 80%;
}
#text-body {
border: none;
padding: 0.15em;
width: 100%;
height: 25em;
font-family: 'Nunito', 'Avenir', sans-serif;
font-size: 1em;
resize: vertical;
overflow: auto;
}
#footer {
position: absolute;
bottom: 0;
width: 100%;
}
button#cta-button {
background-color: #153570;
color: white;
border: none;
border-radius: 100em;
padding: 1em;
cursor: pointer;
}
div#socials-wrapper {
background-color: #38BFE7;
text-align: center;
padding: 1em 2em;
}
div#socials-wrapper > p {
margin: 0.5em 0;
}
a.undecorate {
color: black;
text-decoration: none;
}
a.social {
margin: 0 1em;
}
a.social > svg {
width: 2em;
height: 2em;
background: white;
border-radius: 0.5em;
}