-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
79 lines (70 loc) · 1.08 KB
/
styles.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
/** @format */
@font-face {
font-family: Glam;
src: url("GlametrixBold.otf");
font-weight: bold;
}
form {
display: flex;
justify-content: center;
font-family: Glam;
font-size: 25px;
}
body {
background: rgb(78, 106, 203);
background: linear-gradient(
90deg,
rgba(78, 106, 203, 1) 42%,
rgba(208, 198, 29, 1) 61%
);
}
.hints {
display: inline-block;
float: right;
margin-left: 10px;
position: relative;
}
h1 {
text-align: center;
font-family: Glam;
font-size: 66px;
border: 10px solid black;
border-radius: 50px;
}
footer {
text-align: center;
}
.badge {
width: 500px;
height: 300px;
}
#results {
border: 6px solid black;
text-align: center;
margin-top: 10px;
}
.marker {
margin-left: 10px;
width: 15px;
height: 15px;
}
p {
font-family: Glam;
font-size: 35px;
}
.container {
display: grid;
grid-template-columns: 350px repeat(11, 74px);
margin: 10px;
}
.sidebar {
grid-column: 1 / span 1;
border: 8px solid rgb(0, 0, 0);
background-color: rgb(195, 179, 227);
font-size: 30px;
text-align: center;
margin-right: 20px;
}
.content {
grid-column: 2 / span 11;
}