-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.css
More file actions
77 lines (66 loc) · 886 Bytes
/
Copy pathportfolio.css
File metadata and controls
77 lines (66 loc) · 886 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#fh5co-hero .fh5co-overlay {
background-color: transparent !important;
}
* {
box-sizing: border-box;
}
.hobby{
background-color: gray;
font-size: larger;
font-weight: bold;
text-align: center;
}
.container
{ display: flex;
flex-wrap: wrap;
max-width:100%;
margin: 0 auto;
height: 100vh;
}
.hi1
{
width:100%;
background-color: rgb(31, 148, 150);
}
.hi2
{
width:100%;
background-color: rgb(175, 238, 238);
}
.hi3
{ width:100%;
background-color: cornflowerblue;
}
.deep
{
font-size: xx-large;
font-weight: 900;
text-align: center;
}
p:hover p1
{
display: block;
}
p1
{
display: none;
}
.img-fluid
{
max-width: 50%;
height: auto;
}
@media screen and (max-width: 768px){
.hi1
{
order: 2;
}
.hi2
{
order:1;
}
.hi3
{
order:3;
}
}