-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (64 loc) · 1.08 KB
/
style.css
File metadata and controls
76 lines (64 loc) · 1.08 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
body{
font-family: 'Open Sans', sans-serif;
font-size: 24px;
text-align: center;
height: 100vh;
width: 100vw;
margin: 0;
}
.container{
display: grid;
width: 100%;
height: 100%;
grid-template-columns: auto;
grid-template-rows: auto;
justify-items: center;
align-items: stretch;
}
#header{
background-color: #F5A962;
color: #125D98;
width: 100%;
height: 100%;
padding-top: 40px;
margin: 0;
}
h1{
font-weight: 800;
}
#selection{
width: 100%;
height: 100%;
padding-top: 40px;
margin: 0;
background-color: #DDDDDD;
}
/*Button Styling */
#options{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 100%;
margin: 5px;
}
button{
padding-top: 20px;
padding-bottom: 20px;
margin: 10px 40px;
background-color: #125D98;
color: #DDDDDD;
font-size: 22px;
border-radius: 12px;
}
#rock{
}
#paper{
}
#scissors{
}
#score{
width: 100%;
height: 100%;
padding-top: 40px;
background-color: #3C8DAD;
color: #F5A962
}