This repository has been archived by the owner on Dec 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
68 lines (61 loc) · 1.47 KB
/
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
59
60
61
62
63
64
65
66
67
68
body {
background-color: rgba(24, 24, 24, 0.993);
}
h1 {
color: rgb(0, 119, 255);
font-family: Arial, Helvetica, sans-serif;
}
p {
color: rgb(255, 255, 255);
font-family: Arial, Helvetica, sans-serif;
}
button {
background-color: #363636; /* Green */
border: none;
color: white;
padding: 15px 32px;
border-radius: 12px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
transition-duration: 0.4s;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
font-family: Arial, Helvetica, sans-serif;
cursor: pointer;
}
button:hover {
background-color: #949494; /* Green */
color: white;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
button:active {
background-color: #303030;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
/* Add a black background color to the top navigation */
.topnav {
overflow: hidden;
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
font-family: Arial, Helvetica, sans-serif;
transition-duration: 0.4s;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: rgb(163, 163, 163);
color: black;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #353535;
color: white;
}