-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmedia.css
More file actions
90 lines (72 loc) · 1.24 KB
/
media.css
File metadata and controls
90 lines (72 loc) · 1.24 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
79
80
81
82
83
84
85
86
87
88
89
90
@media (max-width:850px) {
body {
width: 100%;
}
/*Navbar*/
#nav-bar {
flex-direction: column;
}
#nav-bar a {
font-size: 1.2rem;
}
/*Profile*/
#profile {
flex-direction: column;
padding: 3rem 2rem;
gap: 2rem;
width: 80%;
margin: 3rem auto;
}
/*about container */
.about-containers {
flex-direction: column;
align-items: center;
gap: 2rem;
}
.about-container {
width: 60%;
}
.about-text {
width: 70%;
margin: 0 auto;
text-align: justify;
}
/*skills*/
.skills-containers {
flex-direction: column;
gap: 1rem;
}
.skills-container {
width: 60%;
}
/*projects*/
#projects .btn-container {
flex-direction: column;
align-items: center;
}
/*Contact*/
.contact-containers {
flex-direction: column;
align-items: flex-start;
padding: 1.2rem 2rem;
}
/*Footer*/
#footer a {
font-size: 1.2rem;
}
#footer p {
font-size: 0.8rem;
}
}
@media (max-width:1200px) {
.skills-container {
gap: 1rem;
}
#projects .skills-containers {
flex-wrap: nowrap;
flex-direction: column;
}
#projects .skills-container {
width: 60%;
}
}