-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathauthor.css
More file actions
62 lines (52 loc) · 1.08 KB
/
author.css
File metadata and controls
62 lines (52 loc) · 1.08 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
body{
background-position: center;
background-repeat: no-repeat;
background-image: linear-gradient(to top, #491996 0%, #e5b2ca 100%);
background-color: #d88cb0;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color:rgba(61, 1, 58, 0.842);
border-radius: 8px;
}
li {
float: right;
}
li a {
display: block;
color: white;
text-align: center;
padding: 2vw 3vw;
text-decoration: none;
font-size: large;
}
li a:hover {
background-color: violet;
color: navy;
}
p{
color:rgb(250, 238, 215);
text-indent: 50px;
padding: 0 10px 10px 10px;
text-align: justify;
font-size: 20px;
line-height: 2;
}
img{
float: right;
padding: 0 20px 20px 20px;
}
h1{
text-align: center;
text-decoration: underline;
color: rgb(77, 1, 77);
}
@media only screen and (max-width:500px) {
/* For mobile phones: */
li {
width: 100%;
}
}