-
Notifications
You must be signed in to change notification settings - Fork 0
/
Email.css
53 lines (51 loc) · 1.11 KB
/
Email.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
display: grid;
place-items: center;
height: 100vh;
background-color: transparent;
background-image: url(checkmark.gif);
background-position: center;
background-size: cover;
color: aliceblue;
}
.container {
height: 250px;
width: 450px;
background:none;
box-sizing: 2px 2px 8px rgba(0, 0, 0, 0.7), -2px -2px 8px rgb(74, 5, 5);
}
.container h2 {
text-align: center;
margin: 30px 0px;
font-size: 27px;
}
.email {
height: 50px;
width: 400px;
outline: auto;
background: transparent;
padding: 0px 20px;
color: violet;
}
.h3 {
height: 50px;
width: 400px;
margin: 0px 25px;
}
.check {
height: inherit;
width: auto;
border: none;
outline: auto;
background: violet;
padding: 0px 20px;
margin: 14px 25px;
cursor: pointer;
font-weight: 600;
}