-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (70 loc) · 1.12 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;500;600;700;800;900&display=swap');
.pair {
display: grid;
grid-template-columns: 1fr 2fr;
grid-gap: 1rem;
width: 20vw;
}
input[type='text'],
.player select {
width: 100%;
padding: 5px 10px;
box-sizing: border-box;
border-radius: 5px;
border: 1px solid white;
}
.playercont {
display: flex;
flex-direction: row;
gap: 10rem;
/* justify-content: center; */
align-items: center;
margin: 3vh 0;
}
.header {
font-size: 5rem;
margin: 3vh 3vh;
}
.container {
gap: 1rem;
/* justify-content: center; */
height: 60vh;
margin: 0 3vh;
}
body {
color: #fff;
background-color: #222;
}
* {
background-color: inherit;
color: inherit;
}
.player,
.playercont .player {
display: flex;
flex-direction: column;
gap: 1rem;
}
body * {
font-family: Inter;
}
.teamselect {
padding: 5px 10px;
}
.submit {
color: white;
padding: 10px 20px;
border: none;
font-size: 1rem;
border-radius: 5px;
background-color: #5588dd;
cursor: pointer;
transition: 0.3s;
}
#status {
display: flex;
flex-direction: column;
}
.submit:hover {
background-color: #4466aa;
}