-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
132 lines (113 loc) · 1.99 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
body {
padding: 10px;
margin: 0;
background-color: #f0e8e8;
display: flex;
justify-content: center;
flex-wrap: wrap;
align-content: center;
flex-direction: column;
}
#gameName {
color: rebeccapurple;
font-size: large;
}
#userPoints {
/* color: rgb(23, 178, 23); */
font-size: xx-large;
}
#compPoints {
/* color: red; */
font-size: xx-large;
}
#result {
color: red;
}
h1,
h2 {
text-align: center;
}
h1,
h2,
h3,
h4 {
color: white;
margin: 15px;
}
.container {
/* display: flex; justify-content: center; align-items: center;
background-color: rebeccapurple; */
border-radius: 5%;
display: flex;
justify-content: center;
background-color: #c4a6e2c7;
flex-direction: column;
align-content: stretch;
flex-wrap: wrap;
align-items: center;
/* width: 100%; */
/* border: 8px solid rosybrown; */
/* box-shadow: 14px 9px 13px 0px #44eed747; */
box-shadow: 14px 9px 13px 0px #ad7bdead;
}
.img-container,
.image-options {
display: flex;
margin: auto;
align-content: center;
justify-content: space-around;
align-items: center;
text-align: center;
gap: 23px;
}
.option-img:hover {
transform: scale(1.02);
}
img {
height: 150px;
width: 150px;
border-radius: 29%;
padding: 10px;
/* border: 2px solid green;
box-shadow: 14px 9px 13px 0px #9bd2bf; */
border: 3px solid rosybrown;
box-shadow: 14px 9px 13px 0px #5864db47;
}
.image-options {
cursor: pointer;
/* height:100px;
width: 100px; */
margin-bottom: 20px;
margin-right: 50px;
}
.image-options img {
/* cursor: pointer; */
height: 100px;
width: 100px;
}
.result-section {
font-size: 1.4rem;
display: flex;
justify-content: center;
text-align: center;
gap: 75px;
}
@media only screen and (max-width: 420px) {
.img-container,
.image-options {
gap: 8px;
}
#user-img,
#comp-img {
height: 100px;
width: 100px;
}
.image-options {
margin-right: 6px;
gap: 6px;
}
.image-options img {
height: 85px;
width: 85px;
}
}