-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirm_mail.css
75 lines (65 loc) · 1.23 KB
/
confirm_mail.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
* {
font-family: 'Raleway', sans-serif;
box-sizing: border-box;
margin: 0;
}
body {
width: 100vw;
height: 100vh;
}
.container {
width: 60vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 10vh auto;
}
.background-image {
background-image: url("./email.png");
width: 40vw;
height: 40vh;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.title {
color: rgb(0, 64, 240);
font-size: 1.3em;
display: block;
margin-bottom: 30px;
font-weight: bold;
}
.logo {
display: inline-block;
margin: 10px;
text-decoration: none;
color: rgb(0, 64, 240);
font-size: 1.5em;
font-weight: bolder;
}
.paragraph {
width: 70%;
font-weight: bold;
font-size: .9em;
text-align: center;
}
.paragraph > i {
color: rgb(0, 64, 240);
font-style: italic;
text-decoration: underline;
}
.paragraph > span {
display: block;
margin-top: 20px;
font-size: .9em;
color: rgb(0, 64, 240);
}
.paragraph > span > a {
color: rgb(0, 15, 56);
font-weight: bold;
cursor: pointer;
}
.paragraph > span > a:hover {
text-decoration: underline;
}