blob: e3ad6e76ae81f1fb37d9b56ce8bd9945674934aa (
plain)
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
|
#peer_review_boxes li {
cursor: move;
position: relative;
float: left;
margin: 5px;
width: 180px;
height: 240px;
border: 1px solid rgb(0, 0, 0);
text-align: center;
padding-top: 10px;
background-color: rgb(238, 238, 255);
}
// Nothing uses this one right now
#peer_review_numeric li {
cursor: move;
position: relative;
float: left;
margin: 5px;
width: 180px;
height: 240px;
border: 1px solid rgb(0, 0, 0);
text-align: center;
padding-top: 10px;
background-color: rgb(238, 238, 255);
}
/**** INDEX PAGE - TABLE AND GRAPH ****/
#matches-table {
@extend .table;
color: #FFF;
form {
color: #333;
}
}
|