-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (48 loc) · 860 Bytes
/
style.css
File metadata and controls
56 lines (48 loc) · 860 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
56
body {
text-align: center;
font-family: sans-serif;
font-size: large;
}
button {
font-family: sans-serif;
font-size: large;
background-color: black;
color: white;
border: none;
width: 128px;
height: 4em;
margin: 10px;
cursor: pointer;
transition: background-color 2s;
}
button:hover {
background-color: #676868;
}
a {
transition: color 2s ease;
color: rgb(76, 76, 187);
}
a:hover {
color: rgb(173, 117, 173);
}
.README a {
position: relative;
left: 538px;
top: -290px;
font-size: 18px;
transition: color 2s ease;
color: black;
text-decoration: 0;
}
.README a:hover {
color: rgb(98, 98, 255);
}
.about a {
margin-left: 172px;
position: relative;
top: -310px;
transition: color 2s ease;
}
.about a:hover {
color: rgb(135, 225, 255);
}