findPage_style.css
639 Bytes
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
table{
position: absolute;
z-index: 2;
left:50%;
top: 20vh;
margin-left: -75vh;
width: 150vh;
border-collapse: collapse;
border-spacing: 0;
border-radius: 12px 12px 0 0;
overflow: hidden;
background: #fafafa;
text-align: center;
}
th,td{
padding:12px 15px;
}
th{
background: #303f9f;
color: #fafafa;
text-transform: uppercase;
}
tr:nth-child(odd){
background-color: #eeeeee;
}
.name{
position: absolute;
width: 70vh;
left:50%;
margin-left:-35vh;
}
.question{
position: absolute;
top: 15vh;
width: 40vh;
left: 50%;
margin-left:-15vh;
}