-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathemailStyle.css
68 lines (66 loc) · 1.02 KB
/
emailStyle.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
*{
font-family: "Roboto", sans-serif;
}
nav{
display: flex;
flex-direction: row;
justify-content: space-between;
}
.navImg{
height: 50px;
width: auto;
}
input{
background-color:#F6F6F6;
border: none;
width: 50vw;
border-radius: 15px;
}
input,
input::-webkit-input-placeholder {
font-size: 20px;
line-height: 3;
margin-left: 10px;
}
#iconBar{
display: flex;
flex-direction: row;
justify-content: space-between;
}
.fas{
color: #898989;
margin: 10px;
}
hr{
color:#F6F6F6;
}
#mailSection{
margin: 4em;
}
#mailHeader{
display: flex;
flex-direction: row;
justify-content: space-between;
}
#mailContent{
text-align: center;
background-color: #cbd4e0;
padding: 4em;
}
button{
height: 36px;
padding: 0 16px;
border-radius: 4px;
cursor: pointer;
font-size: .875rem;
color: #5f6368;
font-weight: 500;
margin: .5em;
margin-top: 2em;
}
button:hover{
background-color:#F6F6F6;
}
.fa-envelope{
color: #D9223A;
}