-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (81 loc) · 1.44 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');
*{
font-family: 'Montserrat', sans-serif;
color: white;
}
html,body {
height: 100%;
background-color: #4F5D75;
width: 100%;
}
#myform{
width: 300px;
background: #2D3142;
margin: 0 auto;
padding: 10px 20px;
position: relative;
border-radius: 5px;
margin-top: 50px;
}
#myform > :not(marquee){
z-index: 2;
}
#myform::before{
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
border-radius: 5px 5px 0 0;
height: 100px;
z-index: 0;
background-color: #EF8354;
}
#success{
background-color: green;
color: white;
visibility:hidden;
padding: 10px 20px;
font-size:1rem;
font-weight: bold;
}
#submit{
-webkit-appearance: none;
padding: 10px 20px;
background-color: #EF8354;
outline: 0;
width: 300px;
border: 0;
margin-bottom: 10px;
font-size:1rem;
border-radius:0 !important;
clip-path: 0;
font-weight: bold;
}
#submit:hover{
background-color: #e95516;
transition: linear .10s;
}
#myform input[type="text"], #myform input[type="email"],#myform textarea{
padding: 5px 10px;
width: 276px;
margin-bottom: 10px;
margin-top: 5px;
color: black;
outline: 0;
border: 0;
font-weight: light;
}
#myform textarea{
resize:vertical;
color: black;
outline: 0;
display:block;
border: 0;
height: 50px;
}
#myform h2{
z-index: 2;
position: relative;
margin-bottom: 50px;
}