-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMarkup.css
87 lines (70 loc) · 1.3 KB
/
Markup.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
@font-face {
font-family: "Aboreto";
src: url(../Rock-Paper-Scissors/Aboreto/Aboreto-Regular.ttf);
}
* {
background-color: rgb(230, 171, 100);
font-family:"Aboreto";
}
#game_over_overlay {
position: absolute;
width:100%;
height:100%;
padding-top:300px;
background-color: rgba(172, 51, 51, 1);
z-index: 1;
top:0;
bottom:0;
left:0;
right:0;
font-size: xxx-large;
text-align: center;
display:none;
flex-grow:1;
}
h1 {
color:crimson;
text-align:center;
}
.buttons {
display:flex;
text-align: center;
align-content: stretch;
flex-basis: 100%;
border: 10px double rgb(232, 91, 91);
}
.buttons button {
width:100%;
height:50px;
border:1px solid transparent;
text-align:center;
}
.buttons button:hover {
transition:0.5s;
background-color: rgb(232, 91, 91);
}
.answers_flex {
width:100%;
height:500px;
display:flex;
flex-grow: 1;
flex-direction: column;
text-align: center;
font-size: larger;
}
#result {
border: 10px double rgb(232, 91, 91);
height:100%;
}
#cTally {
border: 10px double rgb(232, 91, 91);
height:100%;
}
#pTally {
border: 10px double rgb(232, 91, 91);
height:100%;
}
#final {
border: 10px double rgb(232, 91, 91);
height:100%;
}