-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
168 lines (152 loc) · 3.09 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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
#navbar{
position: sticky;
top: 0;
left: 0;
z-index: 100;
padding: .5rem 5rem;
box-shadow: 5px 5px 20px rgba(0,0,0,.5);
background: black;
}
.navbar .navbar-brand{
font-size: 25px;
font-weight: 800;
color: #29f700 !important;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-shadow: 0px 1px 0px green,
0px 2px 0px green,
0px 3px 0px green;
}
#navbarSupportedContent a{
color: #fff;
border-bottom: 2px solid transparent;
}
#navbarSupportedContent a:hover{
border-bottom: 2px solid #29f700;
}
#navbarSupportedContent .signin{
width: 7rem;
height:35px;
}
#navbarSupportedContent .signin a{
color: white;
padding-top: 0px;
}
section{
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
/****Home*****/
#home{
background: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.4)),url(bg.jfif);
background-size: cover;
background-position: center;
flex-direction: column;
margin-top: -50px;
}
#home h1{
font-size: 100px;
color: green;
letter-spacing: 2px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-shadow: 0px 1px 0px #CCC,
0px 2px 0px #CCC,
0px 3px 0px #CCC,
0px 4px 0px #CCC,
0px 5px 0px #CCC,
0px 6px 0px green,
0px 7px 0px green;
}
#home p{
font-size: 18px;
color: #fff;
}
#home .input-group{
width: 40%;
height: 45px;
}
.signin{
background : green !important;
color: white !important;
box-shadow: 2px 4px 5px rgba(0,0,0,.3);
}
/*****About******/
#about{
background : linear-gradient(to right,#ea1d6f,#eb466b 100%)
}
#about h1{
font-weight: 800;
font-size: 50px;
color:white;
}
#about p{
color: white;
}
/*****Products****/
#product{
background :#e5e5e5;
}
#product h1{
font-size: 50px;
letter-spacing: 2px;
font-weight: 700;
}
#product img{
width: 200px;
height: 200px;
}
.card{
width: 250px;
height: 300px;
background : #e5e5e5 !important;
border :none !important;
box-shadow: 15px 20px 20px rgba(0,0,0,.3),
inset 4px 4px 10px white;
border-radius: 20px !important;
overflow: hidden;
justify-content: center;
align-items: center;
margin: 20px 60px;
transition: .2s;
}
.card:hover{
box-shadow: inset 5px 5px 10px rgba(0,0,0,.3),
inset -4px -4px 10px white;
transition: .2s;
}
/****Contact****/
#contact img{
height: 100%;
}
.box{
width: 80% !important;
margin-top: 10px;
}
form{
display: flex;
flex-direction: column;
}
#contact input{
margin: 10px 0px;
}
#contact textarea{
margin: 10px 0px;
}
footer{
width: 100%;
height: 30px;
background: rgba(0,0,0,.8);
margin-top: -30px;
text-align: center;
color: white;
padding: 3px;
}