-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.css
59 lines (55 loc) · 1.14 KB
/
form.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
*
body {
padding: 20px;
height: 100%;
/*background: repeating-linear-gradient(90deg, #ff95c8, #7FB1ED);*/
/*background-size: 100% 200%;*/
width:100%;
/* background:#ff95c8; */
background:#b2d2fa;
/*margin: auto;
width: 100vh;
max-width: 100vw;
min-width: 400px;*/
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.center {
margin-left: 30px;
margin-right: auto;
max-width: 500px;
width: 50%;
white-space: pre-wrap;
}
h2 {
white-space: pre-wrap;
text-align: center;
}
table {
table-layout:fixed;
border-style: double;
border: 10px;
transform: translate(0%, 10%);
top: 75%;
left: 10%;
}
@media only screen and (max-width: 600px) {
/* horizontal scrollbar for tables if mobile screen */
.tablemobile {
overflow-x: auto;
display: block;
}
}
/* .row > div {
background: lightgrey;
border: 1px solid grey;
} */