-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.css
94 lines (91 loc) · 1.6 KB
/
web.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
h1 {
font-family: 'Concert One';
font-size: 2.5rem;
color: rgb(253, 239, 236);
text-align: center;
padding: 3% 0% 3% 0%;
background-color: rgb(248, 108, 108);
}
body{
background-color: rgb(253, 239, 236);
}
div {
/*padding: 50px 120px 20px 120px;*/
padding: 1% 10% 1% 10%;
font-family: 'Laila';
font-size: 1.5rem;
color: rgb(6, 114, 109);
font-weight: 400;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
padding: 10%;
padding-bottom: 5%;
width: 55%;
}
h2{
font-family: 'Concert One';
font-size: 2rem;
color: rgb(223, 49, 86);
padding-left: 10%;
font-weight: lighter;
clear: both;
}
.movie {
display: inline-block;
width: 23%;
padding-left: 10%;
padding-bottom: 6%;
}
.des{
padding-right: 10%;
display: inline-block;
float: right;
width: 35%;
}
a:link, a:visited {
background-color: rgb(223, 49, 86);
color: white;
padding: 2% 3%;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
background-color: rgb(255, 79, 108);
}
footer{
text-align: center;
padding: 10%;
background-color: rgb(233, 118, 118);
color: white;
font-size: 5rem;
font-family: 'Lobster';
clear: both;
}
@media only screen and (max-width: 767px){
h1{
font-size: 1.2rem;
}
h2{
font-size: 0.8rem;
}
.des{
display: block;
float: none;
width: 80%;
}
div{
font-size: 0.5rem;
}
footer{
font-size: 2rem;
}
.movie {
display: block;
padding-left: 15%;
width: 70%;
}
}