-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault_style.css
More file actions
69 lines (60 loc) · 1.01 KB
/
default_style.css
File metadata and controls
69 lines (60 loc) · 1.01 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
.container{
animation:PageChange 2s;
}
@keyframes PageChange {
from{
opacity:0;
transform:rotateX(-70deg) rotateY(0);
}
to{
opacity: 1;
transform: rotateX(0) rotateY(0);
}
}
a{
text-decoration: none;
}
*{
margin:0;
}
/* Header */
header{
display:flex;
height: 100px;
background-color: #FAF8ED;
align-items: center;
justify-content: center;
}
h1{
color:black;
text-shadow:0 0 15px green;
}
/* Nav bar */
.nav-bar{
padding:0;
background-color: #748E63;
display: flex;
align-items:center;
height: 50px;
}
.nav-a{
color: whitesmoke;
padding:0 10px 0 10px;
transition: ease-in-out 100ms;
}
.nav-a:hover{
color: aquamarine;
opacity:0.5;
transform:scale(1.1);
}
.on{
color:darkgreen;
}
/* BODY */
body{
background-color: #748E63;
}
/* To hide scroll bar in body section */
body::-webkit-scrollbar{
display: none;
}