-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphone.css
103 lines (85 loc) · 1.58 KB
/
phone.css
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
91
92
93
94
95
96
97
98
99
100
101
102
103
@media screen and (max-width: 480px) {
.sidebar-container {
display: none;
}
.picture-part{
display: flex;
justify-content: center;
margin-top: 5%;
}
.logo{
display: none;
}
.navbar{
max-width: 100%;
justify-content: flex-start;
align-items: flex-start;
}
.nav-item:not(:last-child) {
margin-right: 0;
}
.picture-part img {
width: 90%;
}
.About{
display: flex;
flex-direction: column;
height: 100%;
}
.text-part{
width: 100%;
}
.picture-part{
width: 100%;
}
.school{
width: 90%;
max-width: 90%;
}
.burger-menu {
display: block;
}
.nav-links {
display: none;
flex-direction: column;
width: 100%;
background-color: #fff;
position: absolute;
top: 60px;
left: 0;
}
.nav-links.show {
display: flex;
}
.nav-item {
padding: 10px;
text-align: center;
width: 100%;
}
.content img{
display: none;
}
.content section{
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.important-experience {
max-width: 90%;
margin-left: 5%;
text-align: justify;
}
.content p{
width: 100%;
}
#scene{
width: 100%;
}
#scene h1{
font-size: 1rem;
}
#scene p{
display: none;
}
}