-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
117 lines (96 loc) · 1.86 KB
/
style.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
* {
*border: 1px solid green;
}
body {
font-family: Arial, Helvetica, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
display: flex;
flex-direction: row;
justify-content: center;
background-color: black;
color: white;
padding: 10px;
}
div {
display: flex;
flex-direction: column;
}
#choice {
color: white;
font-weight: 600;
padding-left: 30px;
}
.column {
display: flex;
flex-direction: column;
background-color: rgba(0, 0, 0, 0.688);
}
.headline {
display: flex;
justify-content: center;
}
#buttons {
display: flex;
flex-direction: row;
justify-content: center;
}
#rock, #paper, #scissors {
border: 2px groove green;
border-radius: 7px;
}
#rock {
background-color: lightgrey;
box-shadow: 6px 6px 3px grey;
}
#paper{
background-color: beige;
box-shadow: 6px 6px 3px rgb(190, 185, 135);
}
#scissors{
background-color: lightblue;
box-shadow: 6px 6px 3px rgb(69, 136, 228);
}
button {
margin: 20px;
margin-top: 30px;
padding: 20px;
justify-content: space-between;
font-weight: 900;
width: 120px;
font-size: 17px;
}
#results {
border: 1px solid rgba(187, 110, 16, 0.434);
align-items: center;
width: 500px;
height: 110px;
margin: 50px;
margin-bottom: 10px;
background-color: rgb(249, 239, 221);
}
#restext {
align-items: flex-start;
justify-content: flex-start;
padding-top: 10px;
height: 30px;
}
#score {
border: 1px solid rgba(187, 110, 16, 0.434);
align-items: center;
width: 500px;
height: 90px;
margin: 50px;
margin-bottom: 50px;
background-color: rgba(0, 0, 0, 0.65);
color: white;
}
#scoretext {
align-items: flex-start;
justify-content: flex-start;
padding-top: 10px;
height: 10px;
}