-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (64 loc) · 1.07 KB
/
style.css
File metadata and controls
78 lines (64 loc) · 1.07 KB
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
body{
display: flex;
align-items: center;
flex-direction: column;
margin: 0;
}
#definition{
font-size: 24px;
height: 300px;
width: 100%;
text-align: center;
}
p,h2{
line-height: 1.6;
margin: 15px ;
text-align: center;
font-family: 'proxima-nova','Open Sans',sans-serif;
}
h2{
text-align: center;
}
img{
height: 400px;
margin: 10px;
}
#container{
height: 300px;
display: flex;
align-items:flex-end;
}
.bar {
width: 40px;
background-color: black;
margin: 2px;
}
button {
margin: 20px;
outline: none;
}
@media only screen and (max-width: 600px) {
#container{
height: 180px;
}
.bar {
width: 20px;
background-color: black;
margin: 1px;
}
button {
margin: 10px;
outline: none;
}
h1{
font-size:26px;
}
p{
font-size: 18px;
text-align:justify;
}
img{
height: 180px;
width: 300px;
}
}