-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcharacter.css
66 lines (54 loc) · 1.07 KB
/
character.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
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color:rgba(1, 20, 41, 0.753);
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:thistle;
color: navy;
}
body{
background-image: linear-gradient(to top, #f43b47 0%, #453a94 100%);
background-color: #453a94;
background-repeat: no-repeat;
text-align: justify;
}
p{
color:white;
text-align: justify;
}
.name{
font-weight: bolder;
font-size: 25px;
}
.desc{
font-size: 20px;
padding: 20px;
line-height: 2;
}
h1{
text-align: center;
text-decoration: underline;
font-size: 35px;
color:wheat;
}
@media only screen and (max-width:500px) {
/* For mobile phones: */
li{
width: 100%;
}
}