forked from makesmatheasy/makesmatheasy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
135 lines (124 loc) · 3.63 KB
/
contact.html
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1,minimum-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact Us</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<style>
/* width */
::-webkit-scrollbar {
width: 12px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: var(--apppink);;
border-radius: 10px;
}
::-webkit-scrollbar-button:single-button {
display: block;
background-color: var(--appimage);
height: 20px;
}
::-webkit-scrollbar-button:single-button:vertical:decrement {
background-position: center 4px;
background-size: 8px 8px;
background-image: url(images/uparrow.png);
background-repeat: no-repeat;
}
::-webkit-scrollbar-button:single-button:vertical:increment {
background-position: center 4px;
background-size: 8px 8px;
background-image: url(images/downarrow.png);
background-repeat: no-repeat;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: var(--apppink);;
}
@font-face {
font-family: mainfont;
src: url(../fonts/Product_Sans_Regular.ttf) format('truetype');
}
body {
background-color: #232a36;
font-family:mainfont;
color: rgb(255, 136, 231);
overflow-x: hidden;
height:100vh;
}
.topp{
display: flex;
justify-content: center;
flex-direction: row;
}
.topp img{
width: 200px;
height: 200px;
}
.topp h1{
padding: 80px 40px 40px 20px;
}
@media(max-width: 500px){
.topp img{
width: 100px;
height: 100px;
}
.topp h1{
font-size: 20px;
padding: 30px 40px 40px 20px;
}
}
body img {
filter: invert(0%);
}
#home {
position: relative;
display: block;
z-index: 10;
float: right;
margin-right:2rem;
margin-top:2rem;
padding: 0rem 0.625rem 0.125rem 0.625rem;
text-transform: uppercase;
border-radius: 0.5rem;
border-color: white;
color: var(--apppink);
background: linear-gradient(to bottom right, #ff299c, rgb(94, 207, 94));
outline: none;
transition-duration: 0.4s;
font-size:1.5rem;
}
#home:hover {
background: #c94e8f;
font-weight: bolder;
}
</style>
</head>
<body>
<a href="index.html">
<button id="home">Home</button>
</a>
<div class="container">
<div>
<div class="topp">
<img src="images/makesmatheasylogo.png">
<h1>Makes Math Easy</h1>
</div>
<iframe id="contactform"
src="https://docs.google.com/forms/d/e/1FAIpQLSe9iLIoN47Puox50aziGG-f1qZMmYm3tiF861QPZyBcZU-kSg/viewform?embedded=true"
width="100%" height="1150" frameborder="0" marginheight="0" marginwidth="0">Loading…
</iframe>
</div>
</div>
</body>
</html>