-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (102 loc) · 1.76 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
* {
margin: 0px;
padding: 0px;
}
body {
font-family: sans-serif;
}
.inner-section {
min-height: 100vh;
}
header ul {
background: lightgray;
display: flex;
}
header ul li {
list-style: none;
padding: 20px;
}
.hero {
height: 60vh;
background: coral;
display: flex;
align-items: center;
justify-content: center;
}
.hero h1 {
color: white;
font-size: 5em;
}
.article {
display: flex;
padding: 20px;
}
.article .inner {
width: 50%;
}
.copyright {
background: black;
font-size: 16px;
color: white;
text-align: center;
padding: 20px;
}
.form-section{
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 50px;
height: 300px;
}
.form-section form{
box-shadow: 0px 10px 53px 0px rgba(0, 0, 0, 0.3) !important;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 30px;
background-color: white;
border-radius: 7px;
}
.inputFiled{
padding: 20px;
}
input[type='text']{
padding: 10px 20px;
border-radius: 6px;
border: 1px solid lightgray;
outline-color: orange;
}
.inputButton{
margin-top: 20px;
padding: 20px;
}
.inputButton > button{
padding: 10px 20px;
border: 2px solid black;
color: white;
background-color: black;
border-radius: 20px;
transition: all 0.3s ease-in-out;
cursor: pointer;
}
.inputButton > button:hover{
color: black;
background-color: white;
}
@media (max-width: 800px) {
.hero {
height: 40vh;
}
.hero h1 {
font-size: 4em !important;
text-align: center;
}
.article {
flex-wrap: wrap;
}
.article .inner {
width: 100%;
padding-top: 30px;
}
}