-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
128 lines (112 loc) · 1.79 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
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
124
125
126
127
128
@font-face {
font-family: FUTURE;
src: url('misc/cartesian-font/Cartesian-4B576.ttf');
}
html, body{
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
p{
margin: 0;
}
.masterdiv{
height: 100%;
width: 100%;
background-color: #FA3030;
}
.topdiv{
height: 20%;
width: 100%;
background-color: black;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.title{
margin-top: 0;
font-family: FUTURE;
font-size: 64px;
color: white;
margin: 0;
}
.flavortext{
color: white;
font-family: FUTURE;
font-size: 20px;
}
.content{
height: 75%;
width: 100%;
display: flex;
}
.playerchoice{
height: 75%;
width: 40%;
display: flex;
flex-direction: column;
align-items: center;
}
.chooseone{
color: white;
font-family: FUTURE;
font-size: 42px;
margin-top: 3%;
}
.btn{
height: 100%;
width: 60%;
background-color: transparent;
border: none;
cursor: pointer;
margin-top: 5%;
margin-bottom: 5%;
}
.icon{
max-width: fit-content;
height: 100%;
width: 40%;
}
.outcome{
height: 100%;
width: 25%;
display: flex;
flex-direction: column;
}
.scoreboard{
margin-top: 80%;
width: 80%;
display: flex;
justify-content: center;
margin-bottom: 60%;
}
.scoreboard p{
font-family: FUTURE;
font-size: 64px;
color: white;
margin: 10px;
}
.sentence{
font-family: FUTURE;
color: white;
font-size: 22px;
}
.robotdiv{
height: 100%;
width: 35%;
display: flex;
flex-direction: column;
align-items: center;
}
.robotswords{
margin-top: 20%;
width: 100%;
font-family: FUTURE;
color: white;
font-size: 24px;
}
.robot{
height: 100%;
}