-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathresponiv.css
78 lines (64 loc) · 980 Bytes
/
responiv.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
nav .fas {
display: none;
}
@media only screen and (max-width: 600px) {
.header-text {
margin-top: 100%;
font-size: 16px;
}
.header-text h1 {
font-size: 30px;
}
nav .fas {
display: block;
font-size: 25px;
}
nav ul {
background: #0ddff2;
position: fixed;
top: 0px;
right: -250px;
width: 200px;
height: 100vh;
padding-top: 50px;
z-index: 2;
transition: right 0.5s;
}
nav ul li {
display: block;
margin: 25px;
}
nav ul .fas {
position: absolute;
top: 25px;
left: 25px;
cursor: pointer;
}
.social.big {
margin-top: 0%;
}
.sub-title {
font-size: 40px;
}
.about-col-1,
.about-col-2 {
flex-basis: 100%;
}
.about-col-1 {
margin-bottom: 30px;
}
.about-col-2 {
font-size: 14px;
}
.tab-links {
font-size: 16px;
margin-right: 20px;
}
.contl,
.contr {
flex-basis: 100%;
}
.timeline {
width: 100%;
}
}