-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (56 loc) · 752 Bytes
/
style.css
File metadata and controls
58 lines (56 loc) · 752 Bytes
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
.header{
width: 75%;
}
.header img{
float:left;
}
h1{
color: #9E9E9E;
padding-top: 5px;
}
h2,h3{
margin: 0;
padding: 0;
}
h3{
font-size: x-large;
color: black;
}
hr {
height: 5px;
background-color: black;
}
.content img{
border-radius: 10%;
border:5px solid gray;
}
.title{
text-align: center;
}
.center {
margin: auto;
}
.content{
width: 90%;
}
.slide{
width: 33%;
text-align: center;
float: left;
margin-bottom: 20px;
}
.date,.lang{
color: gray;
}
@media only screen and (max-width:820px) {
/* For Tablets: */
.slide {
width:50%;
}
}
@media only screen and (max-width:620px) {
/* For mobile phones: */
.slide {
width:100%;
}
}