-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (71 loc) · 1.2 KB
/
style.css
File metadata and controls
97 lines (71 loc) · 1.2 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
body {
margin: 0;
padding: 0;
box-sizing: border-box;
width: auto;
background-color:black;
color:yellow;
}
.container{
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
border: 1px solid white;
margin: auto;
}
.highlight{
color: white;
}
header{
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}
h1{
width: 100%;
text-align: center;
}
h3{
width: 100%;
text-align: center;
}
footer{
border: 1px solid yellow;
/* margin-top:100px;
position: relative;
left: 160px;*/
font-size: 1.25rem;
margin: auto;
text-align: center;
width: 80%;
}
img{
width: 50%;
height:100%;
border: 1px solid white;
box-shadow: 2px 2px 2px white;
}
main{
position:relative;
}
section{
text-align: center;
border: 1px solid yellow;
width: 90%;
margin: auto;
}
@keyframes crypt {
from{background-color: black;color: yellow;}
to{background-color:blue;color:white;}
}
body{
animation-name: crypt;
animation-duration: 10s;
}
@media screen and (max-width:462px) {
h1,h3{
font-size:1.3rem;
}
}