-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (93 loc) · 1.8 KB
/
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
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
107
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #011F55;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
padding-right: 1rem;
padding-left: 1rem;
}
h1,
h2 {
font-size: 3rem;
color: #fff;
margin-bottom: 2rem;
text-align: center;
line-height: 1.2;
}
h1::before {
content: "📧";
display: block;
}
h2::before {
content: "🔹BiSyllab🔹";
display: block;
}
.form {
width: 100%;
max-width: 32rem;
font-size: 1.125rem;
}
.form label,
.form input,
.form textarea,
.form button {
display: block;
width: 100%;
}
.form label {
color: #fff;
line-height: 1;
margin-bottom: 0.5rem;
}
.form input,
.form textarea {
font: inherit;
padding: 0.8rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: 8px;
transition: border-color, box-shadow 0.2s;
}
.form textarea {
min-height: 13rem;
resize: vertical;
}
.form input:hover,
.form input:focus,
.form textarea:hover,
.form textarea:focus {
outline: none;
border-color: #09d;
box-shadow: 0 0 0 3px #4dc8ff;
}
.form button {
display: block;
padding: 1rem;
background: #0072c4;
color: #fff;
font: inherit;
text-transform: uppercase;
border: none;
border-radius: 8px;
cursor: pointer;
transition: 0.2s;
}
.form button:hover,
.form button:focus {
outline: none;
background: #09d;
}
img {
position: relative;
top: -500PX;
left: 550PX;
}