-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (104 loc) · 2.24 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
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
101
102
103
104
105
106
107
108
109
110
111
112
.logo {
display: flex;
justify-content: center;
height: 100px;
width: auto;
padding-top: 100px;
padding-bottom: 50px;
}
ul {
list-style-type: none;
margin: 0 auto;
padding: 0;
overflow: hidden;
background-color: #333;
border-radius: 20px;
text-align: center;
margin-left: 20px;
margin-right: 20px;
}
li {
display: inline;
}
a {
display: inline-block;
padding: 10px 17px;
margin: 7px;
text-decoration: none;
color: white;
font-size: 25px;
text-align: center;
}
.promotion {
display: block;
background-image: url("img/90.jpg");
border-radius: 25px;
margin-left: 20px;
margin-right: 20px;
padding: 25px;
padding-top: 10px;
color: white;
margin-top: 50px;
padding-bottom: 50px;
}
.promotion > p {
display: inline;
padding-right: 500px;
font-size: 15px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.promotion > h1 {
padding-bottom: 20px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.cards {
display: flex;
justify-content: center;
padding-top: 50px;
}
.card {
width: 300px;
margin: 0 20px;
background-color: #f2f2f2;
border-radius: 25px;
}
.card img {
width: 100%;
height: auto;
}
.card > h2 {
padding: 10px;
padding-right: 10px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.content {
padding: 10px;
display: block;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.card:last-child {
margin-right: 0;
}
section > .time {
display: block;
}
footer img {
display: inline;
width: 50px;
margin-bottom: 50px;
margin-top: 50px;
padding-right: 20px;
}
footer p {
display: inline;
float: right;
margin-bottom: 50px;
font-size: 15px;
margin-top: 50px;
padding-right: 20px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
transition: box-shadow 0.3s ease;
}
.card:hover {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}