-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (97 loc) · 1.93 KB
/
style.css
File metadata and controls
112 lines (97 loc) · 1.93 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
112
@import url('https://fonts.googleapis.com/css2?family=Sedgwick+Ave+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');
* {
box-sizing: border-box;
}
body {
background-color: #CCC9E7;
align-items: center;
justify-content: center;
text-align: center;
color: #2E3138;
font-family: 'Shadows Into Light', cursive;
}
h2 {
line-height: 10px;
margin-top: 0px;
margin-bottom: -30px;
}
.container {
width: 600px;
height: 100vh;
margin: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
text-align: center;
}
.userChoices img, .computerChoice img {
opacity: 70%;
margin-top: 10px;
}
.userChoices {
width: 140px;
height: 140px;
border: solid 2px #2E3138;
border-radius: 4px;
margin: 10px;
margin-bottom: -30px;
}
.userChoices:hover {
transform: scale(1.1);
cursor: pointer;
}
.userChoices img {
width: 120px;
}
.keys {
background: #2E3138;
color: #CCC9E7;
margin: 10px;
width: 140px;
height: 50px;
border-radius: 4px;
margin-top: -30px;
margin-bottom: -30px;
}
.keys p {
margin-top: 12px;
}
.computerChoiceContainer {
width: 100%;
height: 150px;
display: flex;
justify-content: center;
align-items: center;
margin-top: -50px;
margin-bottom: -30px;
}
.computerChoice {
width: 140px;
height: 140px;
border: solid 2px #2E3138;
border-radius: 4px;
}
.computerChoice img {
width: 100px;
}
.result {
width: 100%;
height: 70px;
font-size: 30px;
margin-top: -75px;
font-family: 'Shadows Into Light', cursive;
}
.reset {
background: #2E3138;
color: #CCC9E7;
width: 150px;
height: 35px;
border-radius: 4px;
font-family: 'Shadows Into Light', cursive;
font-size: 18px;
border: none;
margin-top: -15px;
}