-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (69 loc) · 1.26 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
html {
margin: 5% 10%;
}
#apps-container {
position: relative;
display: flex;
flex-direction: row;
width: 1280px;
height: 100%;
text-align: center;
font-size: 1.2rem;
border: 1px solid #1a1a1a;
justify-content: space-between;
}
h1 {
background-color: #1a1a1a;
color: #f1f1f1;
padding-bottom: 10px;
text-align: center;
}
h2 {
background-color: #1a1a1a;
color: #f1f1f1;
text-align: center;
}
#apps-container button {
position: relative;
margin: 35px 10px;
align-items: center;
text-align: center;
width: 150px;
height: 200px;
border: 1px solid #1a1a1a;
padding: 5px 5px;
}
#dealer {
position: relative;
width: 400px;
height: 250px;
margin: 10px 10px;
padding: 10px 10px;
border: 1px solid #1a1a1a;
}
#dealer span {
font-size: 3rem;
font-weight: bolder;
}
#player {
position: relative;
width: 400px;
height: 250px;
margin: 10px 10px;
padding: 10px 10px;
border: 1px solid #1a1a1a;
}
#player span {
font-size: 3rem;
font-weight: bolder;
}
.colorPicker {
box-shadow: 0 0 5px #f1f1f1;
border-radius: 10px;
}
.colorPicker-container {
display: flex;
flex-direction: column;
position: relative;
border-radius: 10px;
}