-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
131 lines (111 loc) · 1.92 KB
/
style.css
File metadata and controls
131 lines (111 loc) · 1.92 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
@import url('https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
font-size: 60%;
box-sizing: border-box;
color: rgb(226, 137, 4);
border-color: blue;
}
body {
font-family: 'Press Start 2P', sans-serif;
color: rgb(212, 200, 21);
background-color: #222;
/* background-color: #60b347; */
}
/* LAYOUT */
header {
position: relative;
height: 35vh;
border-bottom: 7px solid rgb(42, 10, 228);
}
main {
height: 65vh;
color: rgb(11, 83, 240);
display: flex;
align-items: center;
justify-content: space-around;
}
.left {
width: 52rem;
display: flex;
flex-direction: column;
align-items: center;
}
.right {
width: 52rem;
font-size: 2rem;
}
/* ELEMENTS STYLE */
h1 {
font-size: 4rem;
text-align: center;
position: absolute;
width: 100%;
top: 52%;
left: 50%;
transform: translate(-50%, -50%);
color: rgb(21, 120, 233);
}
.number {
background: rgb(3, 154, 241);
color: rgb(28, 46, 47);
font-size: 5rem;
width: 20rem;
padding: 3rem 0rem;
text-align: center;
position: absolute;
bottom: 0;
left: 50%;
transform: translate(-70%, 50%);
}
.between {
font-size: 2rem;
position: absolute;
top: 2rem;
right: 2rem;
color: rgb(0, 195, 255);
}
.again {
position: relative;
top: 2rem;
left: 2rem;
}
.guess {
background: none;
border: 4px solid #eee;
font-family: inherit;
color: inherit;
font-size: 5rem;
padding: 2.5rem;
width: 25rem;
text-align: center;
display: block;
margin-bottom: 3rem;
}
.btn {
border:rgb(212, 7, 7);
background-color: rgb(214, 110, 13);
color: rgb(8, 73, 85);
font-size: 2rem;
font-family: inherit;
padding: 2rem 5rem;
cursor: pointer;
}
.btn:hover {
background-color: rgb(0, 209, 28);
}
.message {
margin-bottom: 8rem;
height: 3rem;
}
.label-score {
margin-bottom: 2rem;
}
#riddler-image{
width: 250px;
margin-top: 15px;
}