-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
104 lines (88 loc) · 1.96 KB
/
styles.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
body {
background-image: url('https://images.unsplash.com/photo-1600207954108-1041586b18cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
}
.MainContainer {
display: grid;
align-items: center;
}
header {
background-color: rgba(255, 255, 255, 0);
padding: 20px;
color: white;
}
nav ul {
display: flex;
justify-content: flex-end;
align-items: center;
list-style: none;
}
nav ul li {
margin-right: 25px;
}
nav ul li a {
color: white;
text-decoration: none;
}
button.CreateAccount {
background-color: #EA9E39;
border-radius: 5px;
padding-top: 10px;
padding-right: 15px;
padding-left: 15px;
padding-bottom: 10px;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
.Welcome {
padding: 0px 60px;
color: white;
text-align: center;
max-width: 680px;
margin: 0 auto;
margin-top: 75px;
margin-bottom: 30px;
}
.Title {
font-size: 45px;
display: grid;
margin-bottom: 15px;
justify-content: center;
}
.Paragraph {
display: grid;
justify-content: center;
font-size: 10px;
}
.FormContainer {
justify-content: center;
}
form {
display: grid;
grid-template-columns: 0.5fr 4fr 1fr;
margin-top: 10px;
margin: 0px 45px;
border-radius: 10px;
color: white;
max-width: 1200px;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
.SearchIcon {
display: grid;
background-color: rgba(0, 0, 0, 0.5);
align-items: center;
justify-content: center;
grid: 0.5;
border-radius: 5px 0px 0px 5px;
}
input[type=text] {
background-color: rgba(0, 0, 0, 0.5);
grid: 2;
}
input[type=submit] {
background-color: #4C86D7;
border-radius: 0px 5px 5px 0px;
padding: 10px 0px 10px 0px;
}