-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
97 lines (83 loc) · 1.67 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;400;700&display=swap');
body {
margin: 0;
background-color: black;
}
h1 {
color: #488485;
font-size: 3rem;
text-align: center;
font-family: 'Source Sans Pro', sans-serif;
text-transform: uppercase;
}
h3 {
color: white;
}
.number {
background-color: #94FDFF;
width: 140px;
height: 30px;
border: none;
border-radius: 5px;
text-align: center;
color: black;
font-family: 'Source Sans Pro', sans-serif;
text-transform: uppercase;
}
.marbles {
color: white;
}
.enterName {
color: #3BA4C4;
display: block;
font-family: 'Source Sans Pro', sans-serif;
text-transform: uppercase;
width: 200px;
height: 40px;
border: 1px solid rgba(0, 0, 0, 0.03);
font-size: 1.4rem;
border-radius: 5px;
margin-bottom: 2vh;
text-align: center;
}
.number:focus {
background-color: #4ACFF7;
border: 1px solid black;
outline: none;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
.content {
display: flex;
justify-content: space-evenly;
align-items: center;
height: 300px;
width: 100%;
}
.player {
border: 1px solid rgba(255, 255, 255, 0.224);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 300px;
height: 300px;
}
.buttons {
width: 200px;
height: 45px;
background-color: gray;
border: none;
border-radius: 5px;
}
.rollBtn {
display: none;
background-color: #4ACFF7;
}
.setName {
display: block;
background-color: rgb(255, 102, 102);
}