-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmatchs.css
More file actions
75 lines (70 loc) · 1.44 KB
/
Copy pathmatchs.css
File metadata and controls
75 lines (70 loc) · 1.44 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
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100;400;500&display=swap');
body{
background-color: var(--radical-red);
margin: 0;
padding: 0;
}
#namelist{
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
#namelist img{
width: 150px;
height: 150px;
}
.matchs-content{
display: flex;
flex-flow: row;
align-items: center;
justify-content: flex-start;
border: 3px dashed black;
background-color: var(--sunglow);
border-radius: 25px;
padding: 20px;
padding-top: 0;
position: relative;
max-width: 500px;
width: 80%;
margin-bottom: 20px;
}
.matchs-content p {
transform: translateY(10px);
text-transform: capitalize;
font-size: 20px;
margin-left: 10px;
font-family: 'JetBrains Mono', monospace;
}
.matchlist-h1{
display: flex;
justify-content: center;
font-family:'JetBrains Mono', monospace;
color: white;
}
.button-x{
width: 30px;
position: absolute;
right: 0;
top: 0;
background-color: transparent;
border: 0;
margin: 5px;
}
.back{
color: white;
background-color: white;
border-radius:25px;
width: 80px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
}
.back a{
font-family: 'JetBrains Mono', monospace;
font-weight: bold;
color: black;
text-decoration: none;
}