-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
100 lines (74 loc) · 1.34 KB
/
index.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
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
.Header{
position:absolute;
box-shadow: 50px;
text-shadow: 90px;
width:100%;
height:50px;
background-color:rgb(96, 176, 207);
}
#subheader{
background-color: yellow;
box-shadow: 50px;
text-shadow: 90px;
width:100%;
height:50px;
padding-left:50px;
}
#subheader a{
padding-left: 100px;
}
.blink_me {
animation: blinker 1s linear infinite;
color:white;
}
#heading{
max-width:200px;
height:250px;
background-color: aqua;
margin-top: 120px;
border-color: yellow;
border-width: 7px;
border-radius: 10px;
}
.a{
color:white;
}
.bg{
color:white;
margin-top: 30px;
width:100%;
height:450px;
background-image: url('bg_img.jpg');
}
.footer{
width:100%;
height:100px;
background-color: rgb(49, 146, 175);
}
#pop{
background-color: yellow;
height:150px;
width:100px;
border-radius: 10px;
}
.footer h5{
}
footer h3{
position:fixed;
}
@media screen and (min-width:322) and (max-width:480){
body{
position: fixed;
}
.footer{
position: absolute;
}
}
@media screen and (min-width:300px) and (max-width:500px){
#subheader a{
padding-left: 10px;
}
body{
position: fixed;
}
}