-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
79 lines (69 loc) · 1.52 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
body {
background: #000;
font-family: Arial, sans-serif;
color: #22aa22;
margin: 0;
padding: 0;
line-height: 1.6;
}
#demo_heading {
margin-left: 10px;
margin-top: -3px;
}
#demo_screen{
background: #000000;
}
.restart-button {
background-color: #025c06;
border: none;
color: #72ff6b;
padding: 10px 22px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 20px;
cursor: pointer;
border-radius: 4px;
transition: background-color 0.3s ease;
}
.restart-button:hover {
background-color: #317733;
color: #fff;
}
/* Paragraph styling */
p {
margin-bottom: 20px;
color: #72ff6b; /* Light green text color */
font-size: 18px;
}
/* Hyperlink styling */
a {
color: #d6cd2a; /* Medium green color */
text-decoration: none; /* Remove underline */
/*font-weight: bold; !* Bold text for links *!*/
transition: color 0.3s ease; /* Smooth transition for hover effect */
}
/* Hyperlink hover effect */
a:hover {
color: #fff; /* Change to white on hover */
text-decoration: underline; /* Add underline on hover */
}
.content{
margin: 0 auto;
width: 80%;
max-width: 800px;
padding: 20px;
background: #001400;
border-radius: 4px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
margin-top: 20px;
}
.code {
background-color: #0b300c;
color: #72ff6b;
padding: 2px 5px;
border-radius: 4px;
font-family: 'Courier New', Courier, monospace;
font-size: 96%;
}