-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (73 loc) · 1.48 KB
/
style.css
File metadata and controls
86 lines (73 loc) · 1.48 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
@charset "UTF-8";
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
align-items: center;
background-color: #333366;
color: #ffffee;
display: flex;
flex-direction: column;
font-family: Verdana, Geneva, Tahoma, Arial, sans-serif;
}
h1 {
font-size: 200%;
font-weight: normal;
text-align: center;
}
.all-picks {
align-items: center;
display: flex;
flex-direction: row;
justify-content: center;
}
.picked-by-1, .picked-by-2, .picker-1-info, .picker-2-info, .unpicked-by-1, .unpicked-by-2 {
align-items: center;
display: flex;
flex-direction: column;
}
.picked-by-1, .picked-by-2 {
border-color: #666699;
border-radius: 16px;
border-style: solid;
border-width: 8px;
margin: 0px 16px;
}
.picker-1-info > div, .picker-2-info > div {
margin-top: 24px;
text-align: center;
}
.next-to-pick, #draft-complete {
background-color: #ffffcc;
border-radius: 8px;
box-shadow: 0px 0px 15px 3px #ffffcc;
color: #000000;
padding: 8px;
}
.preference {
align-items: center;
background-color: rgb(85, 85, 85);
border-radius: 8px;
color: #000000;
display: flex;
font-size: 150%;
height: 80px;
justify-content: center;
margin: 8px;
width: 80px;
}
.pick-missed {
border-color: #000066;
border-radius: 16px;
border-style: solid;
border-width: 8px;
}
.pick-pickable {
box-shadow: inset 2px 2px #ccccff, inset -2px -2px #000033;
}
p {
text-align: center;
}