-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
65 lines (63 loc) · 1.08 KB
/
style.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
body{
overflow-x: hidden;
margin: 0;
padding: 0;
}
#title{
font-size: 50px;
margin-left: 40%;
text-align: center;
}
.bt{
border-style: solid;
border-color: #008000;
background-color: green;
border-radius: 5px;
color: white;
text-decoration: none;
font-size: 20px;
}
#mainImg{
margin-left: 30%;
margin-right: auto;
width: 500px;
height: 300px;
}
#sub{
text-align: center;
font-size: 30px;
}
#bt1{
margin-left: 40%;
}
#bt2{
margin-left: 20px;
}
@media only screen and (max-width: 600px) {
#title{
font-size: 40px;
margin-left: 0;
margin-top: 20px;
}
#mainImg{
width: 100%;
height: auto;
margin-left: 0;
margin-top: 20px;
}
#sub{
font-size: 20px;
}
#bt1{
position: absolute;
bottom: 20%;
left: 30%;
margin-left: 0;
}
#bt2{
position: absolute;
bottom: 10%;
left: 35%;
margin-left: 0;
}
}