-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscore.css
102 lines (85 loc) · 1.72 KB
/
score.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
@import url('https://fonts.googleapis.com/css2?family=Roboto');
*{
margin: 0;
padding: 0;
outline: 0;
font-family: 'Roboto', sans-serif;
text-align: center;
}
body{
background: url("Img/stade_ldc.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
background-size: cover;
height: 100%;
}
/****************************************** NAVBAR ******************************************/
#navbarNav {
color: black;
font-size: 25px;
text-transform: uppercase;
}
.navbar-nav a:hover {
font-weight: bold;
}
/****************************************** PAGE SCORE ******************************************/
.container{
position: absolute;
left: 50%;
transform: translateX(-50%);
margin: 50px 0;
width: 50px;
background-color: rgb(184, 184, 206);
border-radius: 8px;
text-transform: uppercase;
padding: 10px;
}
.title-box{
margin: 25px 0;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-around;
align-items: center;
width: 100%;
font-size: 1.5em;
}
.title-box #goals{
font-size: 1.8em;
}
.team{
width: 100px;
}
.team img{
height: 54px;
width: 54px;
}
.matches-table{
margin-top: 50px;
display: flex;
flex-direction: column;
}
.match-tile{
position: relative;
left: 50%;
transform: translateX(-50%);
margin: 10px 0;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
}
.match-tile img{
width: 52px;
height: 52px;
}
.match-tile p{
font-size: 1.2rem;
}
.match-tile #goals{
font-size: 1.8rem;
}
.match-tile .team{
width: 100px;
}