-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
58 lines (48 loc) · 945 Bytes
/
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
width: 300px;
padding: 20px;
text-align: center;
}
h1 {
font-size: 1.5em;
color: #0073e6;
}
#challenge-container {
margin-top: 15px;
}
#challenge-text {
font-size: 1em;
color: #333;
margin-bottom: 10px;
}
#difficulty-level, #timer, #hint-text {
font-size: 0.9em;
color: #666;
margin: 5px 0;
}
#hint-button, #new-challenge {
background-color: #0073e6;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
font-size: 0.9em;
border-radius: 5px;
margin: 5px 0;
}
button:hover {
background-color: #005bb5;
}
#history-container {
margin-top: 20px;
text-align: left;
}
#challenge-history {
list-style-type: none;
padding: 0;
}