-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.css
More file actions
73 lines (66 loc) · 1.49 KB
/
index.css
File metadata and controls
73 lines (66 loc) · 1.49 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
@import url("https://fonts.googleapis.com/css?family=Fjalla+One&display=swap");
* {
margin: 0;
padding: 0;
}
body {
background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/38816/image-from-rawpixel-id-2210775-jpeg.jpg") center center no-repeat;
background-size: cover;
width: 100vw;
height: 100vh;
display: grid;
align-items: center;
justify-items: center;
}
.contact-us {
background: #f8f4e5;
padding: 50px 100px;
border: 2px solid black;
box-shadow: 15px 15px 1px #ffa580, 15px 15px 1px 2px black;
}
input {
display: block;
width: 100%;
font-size: 14pt;
line-height: 28pt;
font-family: "Fjalla One";
margin-bottom: 28pt;
border: none;
border-bottom: 5px solid black;
background: #f8f4e5;
min-width: 250px;
padding-left: 5px;
outline: none;
color: black;
}
input:focus {
border-bottom: 5px solid #ffa580;
}
button {
display: block;
margin: 0 auto;
line-height: 28pt;
padding: 0 20px;
background: #ffa580;
letter-spacing: 2px;
transition: 0.2s all ease-in-out;
outline: none;
border: 1px solid black;
box-shadow: 3px 3px 1px #95a4ff, 3px 3px 1px 1px black;
}
button:hover {
background: black;
color: white;
border: 1px solid black;
}
::selection {
background: #ffc8ff;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
border-bottom: 5px solid #95a4ff;
-webkit-text-fill-color: #2A293E;
-webkit-box-shadow: 0 0 0px 1000px #f8f4e5 inset;
transition: background-color 5000s ease-in-out 0s;
}