-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (108 loc) · 1.57 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: black;
color: white;
}
header {
background: purple;
padding: 10px;
}
header > h1 {
color: white;
text-align: center;
font-family: serif;
}
.zone {
text-align: center;
}
.window {
background-color: white;
margin: 10px;
padding: 10px;
color: black;
display: inline-block;
width: 350px;
height: 350px;
text-align: center;
}
.avatar > img {
height: 225px;
margin: 15px;
}
.sign {
display: inline-block;
}
.sign > img {
border: 5px solid purple;
border-radius: 50%;
width: 150px;
height: 150px;
margin: 20px;
}
#play-area {
height: 285px;
width: 500px;
}
.score, .info, .exclamation, .message {
background-color: purple;
color: white;
font-family: serif;
font-size: 30px;
font-style: bold;
margin-bottom: 5px;
}
.green-back {
background-color: green;
}
.red-back {
background-color: red;
}
.choice > img {
border: 1px solid white;
border-radius: 50%;
width: 100px;
height: 100px;
}
.choices {
text-align: center;
}
.choice {
display: inline-block;
border: 5px solid purple;
border-radius: 50%;
background-color: white;
margin: 20px;
transition: 0.2s;
}
.choice:hover {
cursor: pointer;
border: 10px solid purple;
margin: 15px;
}
@media(max-width: 1300px){
.window {
width: 190px;
height: 220px;
}
#play-area {
width: 350px;
height: 195px;
}
.avatar > img {
height: 125px;
margin: 10px;
}
.sign > img {
width: 100px;
height: 100px;
margin: 10px;
}
.score, .info, .exclamation, .message {
font-size: 20px;
margin-bottom: 5px;
}
}