-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile.css
More file actions
147 lines (128 loc) · 2.42 KB
/
file.css
File metadata and controls
147 lines (128 loc) · 2.42 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
.header_ticker{
text-transform: capitalize;
padding: 0.3rem;
background-color: rgb(219, 144, 144);
display: flex; justify-content: center;
}
body{
margin: 0%;
}
.header{
/* border: 1px solid slateblue; */
display: flex;
}
.header{
display: flex;
max-width: 1000px;
min-width: 80%;
/* border: 1px solid greenyellow; */
justify-content: space-between;
}
.header>div{
/* border: 1px solid blue; */
width: 100px;
height: 100px;
}
.header_edge{
display: flex;
justify-content: center;
/* border: 1px solid saddlebrown; */
}
.header > .item > img ,
.header > .item > a {
margin-right: 1rem;
border: 1px solid black;
}
.header > .item {
display: flex;
align-items: center;
}
.header > .item3{
display: flex;
align-items: center;
}
.nav{
display: flex;
border: 1px;
justify-content: space-around;
width: 80%;
max-width: 1000px;
}
.nav > li {
list-style-type: none;
border-bottom: 2px solid salmon;
}
.nav
> li > a {
text-decoration: none;
color: black;
}
.nav > li > a :hover{
color: aqua;
}
.nav_edge{
display: flex;
justify-content: center;
}
main > img {
align-items: center;
}
.img{
display: flex;
justify-content: center;
margin: 20px;
padding: 20px;
border: 2px;
justify-content: space-between;
}
.transition{
transition: width 2s, height 0.5s ;
}
.transition:hover{
width: 350px;
height: fit-content;
}
#transition2{
transition: width 2s , height 0.5s;
}
#transition2:hover{
width: 350px;
height: fit-content;
}
details,summary{
color: rgb(87, 77, 77);
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-weight: 100;
text-align: center;
pointer-events: stroke;
}
.footer{
display: flex;
justify-content:space-evenly;
margin: 20px;
padding: 20px;
}
.animation{
text-decoration: none;
color: black;
justify-content: center;
display: flex;
animation: bouncing 2s ease 1s infinite alternate both;
background-color: rgb(47, 160, 160);
padding: auto;
position: relative;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 2em;
margin-top: 100px;
}
@keyframes bouncing {
0%{
bottom: 0;
box-shadow: 0 2 5px black;
}
100%
{
bottom: 100px;
box-shadow: 0 50px 50px black;
}
}