-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
97 lines (83 loc) · 1.66 KB
/
style.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
#left-teams, #left-myteam {
background-image: url("https://union.ic.ac.uk/acc/football/fantasy/images/pitch_web.jpg");
background-size: 100% auto;
width: 100%;
display: inline-block;
}
.right, .left {
display: none;
}
.rightactive, .leftactive{
display: inherit;
}
#right-body{
right: 0px;
position: absolute;
overflow: scroll;
}
.display-row {
display: flex;
justify-content: space-evenly;
}
.player-text {
height: 15%;
width: fit-content;
text-align: center;
background-color:#1B5E20;
color: white;
font-weight: bold;
margin: auto;
}
.player-image {
height: 70%;
background-size: auto 100%;
background-position: center top;
background-repeat: no-repeat;
}
#body {
width: 100%;
display: table;
}
#main {
color: #7F7F7F;
}
tbody tr:hover {
background-color: rgba(25,118,210, 0.5) !important;
}
.rowactive {
background-color: #1976d2 !important;
color: white !important;
}
button {
background-color: #004ba0;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
border-radius: 5px;
}
/* Format error message */
.error {
width:80%;
height:20px;
height:auto;
position:absolute;
left:10%;
/* margin-left:-100px; */
bottom:10px;
background-color: #383838;
color: #F0F0F0;
font-family: Calibri;
font-size: 20px;
padding:10px;
text-align:center;
border-radius: 2px;
-webkit-box-shadow: 0px 0px 24px -1px rgba(56, 56, 56, 1);
-moz-box-shadow: 0px 0px 24px -1px rgba(56, 56, 56, 1);
box-shadow: 0px 0px 24px -1px rgba(56, 56, 56, 1);
}
.player-selected {
background-color: rgba(255,0,0, 0.4)
}