-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmatches.css
More file actions
90 lines (79 loc) · 1.55 KB
/
Copy pathmatches.css
File metadata and controls
90 lines (79 loc) · 1.55 KB
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
@import url('https://fonts.googleapis.com/css2?family=Roboto');
@font-face {
font-family: myFirstFont;
src: url(Qatar2022Arabic-Bold.ttf);
}
*{
padding: 0;
outline: 0;
font-family:'myFirstFont';
text-align: center;
}
body{
height: 100%;
background-image: url(10.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: fill;
}
.container{
position: absolute;
padding: 16px;
top: 40%;
left: 50%;
transform: translate(-50%,-50%);
width: 50%;
background-color:hsl(0, 0%, 100%);
text-align: center;
border-radius: 4px;
text-transform: uppercase;
text-align: center;
}
.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;
}