-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyleForIndex.css
More file actions
51 lines (43 loc) · 779 Bytes
/
Copy pathstyleForIndex.css
File metadata and controls
51 lines (43 loc) · 779 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
@import "main.css";
body {
text-shadow: 0.25cm 0.25cm 0.25cm #000000;
}
div#main {
position: absolute;
top: 0;
bottom: 0;
right: 20%;
height: 40%;
border-radius: 1cm;
margin: auto;
text-align: right;
}
div#main h1 {
font-size: 2cm;
margin-bottom: 1cm;
}
div#main a {
display: inline-block;
padding: 0.5cm;
font-size: 1cm;
text-decoration: none;
border-radius: 1cm;
margin-right: -0.5cm;
transition: background 0.5s;
}
div#main a:visited{
color: #FAFAFA;
}
div#main a:hover{
background-color: rgba(0, 0, 0, 0.7);
}
div#main a:active{
transition: background 0.2s;
background-color: #D84315;
}
footer {
position: absolute;
bottom: 0.5cm;
left: 0.5cm;
font-size: 0.7cm;
}