-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment.css
159 lines (137 loc) · 2.48 KB
/
payment.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
*{
margin: 0;
padding: 0
}
body{
min-height: 100vh;
background-color: rgba(13, 107, 90, 0.479);
}
.navbar{
padding: 20px 5%;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0%;
z-index: 999;
background-color: rgba(182, 77, 35);
box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
}
.navbar .logo a{
color: white;
font-size: 28px;
text-decoration: none;
font-weight: bold;
}
.navbar .menu{
position: absolute;
top: 50%;
left: 80%;
transform: translate(-50%,-50%);
height: 30px;
}
.navbar .menu li{
display: inline-block;
position: relative;
}
.navbar .menu li ul.dropdown li{
display: block;
}
.navbar .menu li ul.dropdown {
width: 300%;
background: rgba(182, 77, 35);
position: absolute;
border-radius: 20px;
border: 1px solid white;
z-index: 999;
top: 100%;
display: none;
box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
}
.navbar .menu li a:hover{
background: white;
color: rgba(182, 77, 35);
}
.navbar .menu li:hover ul.dropdown {
display: block;
}
.navbar .menu li{
list-style: none;
display: inline-block;
}
.specs{
height: 250px;
background: white;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
border-radius: 5px;
border-color: black;
margin: auto;
width: 250px;
border: 3px solid black;
padding: 10px;
margin-top: 50px;
}
.specs input {
padding: 7px;
font-size: 18px;
}
.specs input.form-control {
height: auto;
background-color: white;
color: black;
}
.btn{
font-size: 13px;
color: rgb(56, 38, 4);
padding: 10px 18px;
font-weight: 900;
border: 1px solid rgba(182, 77, 35);
border-radius: 20px;
margin-left: 75px;
margin-top: 30px;
}
.btn:hover{
cursor: pointer;
background-color: rgba(182, 77, 35);
color: white;
}
.sort{
font-weight: 700;
font-size: 24px;
color: rgba(182, 77, 35);
}
.navbar .menu li a{
display: block;
margin-left: 25px;
color: white;
border-bottom: 8px solid transparent;
text-decoration: none;
font-size: 20px;
font-weight: bold;
}
.navbar .menu li a:hover{
border-bottom: 4px solid white;
}
h1{
background-color:rgb(221, 185, 27);
padding: 20px;
text-align: center;
color: white;
box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
}
footer{
position: sticky;
top: 100%;
background-color: rgba(182, 77, 35);
height: 13vh;
}
footer p{
text-align: center;
line-height: 13vh;
}
footer p a{
text-decoration: none;
color: white;
font-size: 24px;
font-weight: bold;
}