-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstyles.css
More file actions
93 lines (77 loc) · 1.6 KB
/
Copy pathstyles.css
File metadata and controls
93 lines (77 loc) · 1.6 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#body {
background-image : url(yes.jpg);
background-color : powderblue;
background-repeat: no-repeat;
background-size : cover;
}
.navbar {
background-color: #2b2a2a;
}
.navbar p {
color: royalblue;
}
.main-content {
background-color: rgb(55, 62, 161, .5);
padding : 10px;
height : max-content;
width : max-content;
margin-top : 30px;
border-radius : 10px;
}
.page-footer {
background-color: rgba(58, 58, 58, 0.5);
color : #ccc;
padding : 5px;
height : 90px;
position : fixed;
width : 100%;
bottom : 0;
margin : 0;
}
/*
.mistake {
border-radius : 25px;
background-color: rgba(110, 117, 212, 0.5);
width : 3000px;
} */
nav ul {
top : 0;
margin : 0;
padding : 0;
list-style: none;
}
nav li {
display : inline-block;
margin : 10px;
position: relative;
}
nav a {
text-decoration: none;
}
nav a:hover {
color: #ffffff;
}
nav a::before {
content : '';
display : block;
height : 5px;
background-color: #b3fffb;
position : absolute;
top : 6px;
width : 0%;
transition : all ease-in-out 250ms;
}
nav a:hover::before {
width: 80%;
}
p {
color : rosybrown;
transition: all ease-in-out 500ms;
}
em:hover {
animation : ease-in-out;
/*Not that important comment */
color : rgba(115, 161, 55, 0.5);
transition: all ease-in-out 200ms;
/* Subsequent comments */
}