-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleForms.css
162 lines (117 loc) · 2.24 KB
/
styleForms.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
body {
width: 100vw;
height: 100vh;
font-family: 'Roboto Mono', monospace;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url("FoodImagesVideo/ramen-7187810_1920.jpg");
background-position: contain;
background-color: black;
}
form {
width: 500px;
height: 450px;
border: 3px solid #87909f;
background-color: #ffffff;
border-radius: 2rem;
}
h1 {
margin-left: 35px;
margin-bottom: 60px;
text-decoration-line: underline;
}
div {
margin: 10px;
text-align: center;
}
input {
margin: 5px;
}
button {
margin-left: 197px;
}
input:hover {
box-shadow: 3px 3px red;
}
#data:hover {
box-shadow: 3px 3px red;
}
button:hover {
box-shadow: 3px 3px red;
}
.pagination {
display: inline-block;
width: auto;
height: 8vh;
margin-top: 20px;
border-radius: 20px;
background-color: white;
border: 3px solid #87909f;
}
.pagination a {
color: black;
float: left;
padding: 8px 16px;
text-decoration: none;
}
a {
color: #f8edeb;
}
a:hover {
color: aqua;
}
a:active {
color: yellow;
}
.topNav,
.bottomNav {
width: 100vw;
height: 2vh;
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
ul {
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
.breadCrumbs {
width: 100vw;
height: 10vh;
display: flex;
flex-direction: row;
justify-content: flex-start;
margin-left: 30px;
}
.breadCrumbs li::after {
content: "> ";
}
/* used pseudo element:: after to insert symbol for breadcrumbs and ::after ="" empty to denote to stop after that. */
.breadCrumbs li:last-child::after {
content: "";
}
.menu {
display: none;
}
@media (max-width:619px) {
body {
height: auto;
}
.topNav {
display: none;
}
form {
width: auto;
}
button {
margin-left: 50px;
}
.pagination {
width: auto;
height: auto;
}
}