-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (48 loc) · 931 Bytes
/
styles.css
File metadata and controls
55 lines (48 loc) · 931 Bytes
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
head,
body {
font-family: monospace;
text-align: center;
background-color: rgb(47, 47, 47);
color: greenyellow;
width: 200px;
}
#hackButton {
background-color: transparent;
border: none;
padding: 5px;
border-radius: 4px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 1rem;
margin-bottom: 10px;
font-weight: bold;
color: yellowgreen;
transition-duration: 0.4s;
border: solid 1px red;
}
/* This happens when cursor hovers over hackButton */
#hackButton:hover {
background-color: red;
color: black;
}
#title {
margin: 15px;
font-size: 1.75rem;
}
#credits {
margin-left: 20px;
margin-right: 20px;
font-size: 0.6rem;
}
#tutorial {
font-size: small;
}
a:link,
a:visited {
color: rgb(119, 153, 244);
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover {
color: rgb(78, 125, 255);
}