-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
75 lines (65 loc) · 1.02 KB
/
index.css
File metadata and controls
75 lines (65 loc) · 1.02 KB
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
h1 {
color: white;
padding: 20px;
text-align: center;
}
h2 {
color: white;
padding: 20px;
text-align: center;
}
h3 {
color: white;
padding: 20px;
text-align: center;
}
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 20px;
color: lightgray;
background-color: black;
}
a:link {
color: red;
text-decoration: none;
font-weight: bold;
transition: all 1s ease;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
cursor: pointer
}
a:visited {
color: darkred;
text-decoration: none;
}
a:hover {
color: orangered;
text-decoration: none;
letter-spacing: 2px;
}
a:active {
color: maroon;
text-decoration: none;
}
p {
width: 600px;
margin: auto;
text-align: center;
}
.row {
width: 750px;
margin: auto;
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 5px;
}
.homelink {
position:static;
bottom: 0;
width:100%;
text-align: center;
padding-bottom: 10px;
padding-top: 50px;
}