-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (104 loc) · 2.18 KB
/
style.css
File metadata and controls
123 lines (104 loc) · 2.18 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
* {
cursor:pointer;
}
.cadre {
background-color:lightgrey;
border:1px solid black;
margin-bottom:4px;
}
.carre {
width:100px;height:100px;
background: url('cards.png') no-repeat;
margin:0px;
}
.flippable {
opacity:0;
}
#main {
margin-left:auto;margin-right:auto;
padding:10px;
width:500px;
display: flex;
flex-direction: column;
justify-content:center;
align-items:center;
}
#container {
background-color:grey;
width:420px;
padding:5px;
}
#board {
display:flex;
flex-direction:row;
flex-wrap:wrap;
justify-content:space-around;
align-content:space-around;
width:auto;
}
#boardoverlay {
background-color:transparent;
opacity:0.5;
position:absolute;
width:440px;
height:430px;
top:20px;
}
#billboard {
display:flex;
flex-direction: column;
justify-content:center;
align-items:center;
width:100%;
}
#billboard > div {
color:white;
background-color: rgb(43,194,83);
font-family:arial;
font-size:1.3em;
width:60%;
border:solid 1px rgb(43,194,83);
text-align:right;
border-radius:25px;
margin:2px;padding-right:15px;padding-top:10px;padding-bottom:10px;
box-shadow:
inset 0 2px 9px rgba(255,255,255,0.3),
inset 0 -2px 6px rgba(0,0,0,0.4);
}
h2 {
font-family:arial;
}
.meter {
height: 20px; /* Can be anything */
position: relative;
background: #555;
border-radius: 25px;
padding: 10px;margin:10px;
overflow: hidden;
width:100%;
}
.meter > span {
color:white;font-weight:bold;
font-family:arial;
text-align:center;
display: block;
height: 100%;
border-radius: 20px;
background-color: rgb(43,194,83);
box-shadow:
inset 0 2px 9px rgba(255,255,255,0.3),
inset 0 -2px 6px rgba(0,0,0,0.4);
position: relative;
}
.start {
border-radius:8px;
width:50px;
margin:10px;padding:10px;
font-size:20px;
font-family:arial;
color:white;
background-color:rgb(43,194,83);
box-shadow:
inset 0 2px 9px rgba(255,255,255,0.3),
inset 0 -2px 6px rgba(0,0,0,0.4);
}