-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (85 loc) · 1.53 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
body {
font-family: 'Poppins', sans-serif;
}
.navbar-nav {
margin: 0 auto;
}
.nav-item {
margin: 0 1rem;
color: #4B4B4B;
}
#dropdown {
color: white;
background-color: #144F37;
border-radius: 30px;
}
.auth-buttons {
display: flex;
align-items: center;
}
.auth-buttons a {
margin-right: 1rem;
}
body {
background-color: #B7CBBC;
}
.hero {
/*
display: flex;
justify-content: center;
align-items: center; */
display: flex;
align-items: center;
justify-content: center;
text-align: center;
height: 80vh;
/* gap: 50em; */
}
.hero-details {
display: flex;
flex-direction: column;
justify-content:center ;
max-width: 600px;
margin: 0 auto;
gap: 1rem;
}
.hero-details > h1 {
font-size: 3.7em;
color: #30A534;
text-align: left;
/* margin-top: 0; */
/* align-self: center; */
}
#hero-form > button {
background-color: #F7C023;
color: white;
border: none;
border-radius: 30px;
padding: 10px 20px;
font-size: 16px;
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
}
h1 > p {
color: #144F37;
margin: 0;
}
.hero-details > .hero-text {
/* font-size: 5em; */
color: #4B4B4B;
/* padding-left: 2.5rem;
padding-right: 31.25rem; */
/* max-width: 250px; */
/* align-self: center; */
}
.hero > img {
width: 400px;
height: 300px;
}
@media (max-width: 768px) {
.hero img {
display: none;
}
.hero-details {
text-align: center;
}
}