-
Notifications
You must be signed in to change notification settings - Fork 1
/
dog.css
63 lines (63 loc) · 986 Bytes
/
dog.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
body{
overflow-x: hidden;
background-color: #64c58d60;
}
.top{
position: absolute;
background-color: #255f3d;
width: 100%;
padding: 55px;
top: 0px;
left: 0px;
}
.logo{
position: absolute;
top: 0px;
left: 5px;
}
img{
position: absolute;
top: 140px;
left: 120px;
}
.info{
position: absolute;
top: 120px;
left: 700px;
font-family: 'Mate SC', serif;
}
p{
font-size: 28px;
}
@media screen and (max-width: 1085px){
.info{
left: 550px;
}
}
@media screen and (max-width: 951px){
.info{
left: 250px;
top: 550px;
}
}
@media screen and (max-width: 549px){
.info{
left: 100px;
}
.img{
left: 40px;
}
}
@media screen and (max-width: 412px){
.img{
left: 20px;
}
}
@media screen and (max-width: 383px){
.info{
left: 50px;
}
.img{
left: 5px;
}
}