-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
111 lines (95 loc) · 1.78 KB
/
styles.css
File metadata and controls
111 lines (95 loc) · 1.78 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
* {
padding: 0%;
margin: 0%;
box-sizing: border-box;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.selection {
font-size: 3vw;
}
body {
background-color: #385e8f;
display:flex;
flex-direction: column;
}
.header,
.result {
background-color: #9350a6;
border: solid 20px #7c3390;
display: flex;
justify-content: center;
align-items: center;
margin: 5px;
}
.header {
height: 8vh;
padding-top: 10px;
padding-bottom: 10px;
}
.result {
flex-direction: row;
justify-content: space-between;
margin-top: 14px;
}
.title {
font-size: bold;
}
.hand {
flex: 0 1 auto;
max-width: 100%;
max-height: 80%;
}
.rps-buttons {
border: solid 4vw #7c3390;
background-color: #b881c7;
margin: 5px;
padding: 2vh;
flex: 1 1 0;
display: flex;
flex-direction: column-reverse;
align-items: center;
justify-content: space-between;
transition: 0.5s;
}
.rps-buttons:hover {
border-color: #cef299;
background-color: #5477a4;
transition: 0.5s;
}
.UI {
align-self: center;
margin-top: .5vw;
width: 100vw;
height: 33.33vw;
display: flex;
justify-content: space-between;
}
.score {
display: flex;
flex-direction: column;
background-color: #385e8f;
justify-self: flex-start;
margin-left: 0px;
justify-content: space-between;
align-items: center;
}
.score .user,
.score .computer {
font-size: 50px;
padding: 10px;
max-height: max-content;
min-height: fit-content;
}
.score .user {
background-color: #b4e66b;
}
.score .computer {
background-color: gray;
}
.displayResult {
max-height: 150px;
overflow-y: auto;
overflow-x: hidden;
text-align: justify;
font-size: 40px;
}