-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtribute.css
More file actions
68 lines (52 loc) · 820 Bytes
/
tribute.css
File metadata and controls
68 lines (52 loc) · 820 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
59
60
61
/* here the css */
*{
box-sizing: border-box;
}
#main{
background-color: #d1e0e0;
padding: 20px 10px;
}
/* for main heading */
#title{
font-size: 61px;
text-decoration: underline;
}
/* here to align in cneter */
.center{
text-align: center;
}
/* here for img */
img.center{
height: 500px;
max-width: 100%;
margin: 0px 80px;
border: 3px solid black;
}
@media (orientation:portrait){
#div-img{
height: 300px;
width: 400px;
margin: 0px;
}
}
/* here for quote in last */
#quote{
font-style: italic;
}
/* here for responsive css for the list */
@media(orientation:portrait){
#list{
margin-left: 50px;
}
}
/* here for list in last */
/* #list{
margin-left: 240px;
} */
/* here for h5 headings and paragraph font-size */
h5.center{
font-size: 16px;
}
p{
font-size: 13px;
}