-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsive.css
137 lines (136 loc) · 2.71 KB
/
responsive.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* RESPONSIVENESS */
@media (max-width: 1000px) {
/*Add margin to container fluid*/
.container-fluid {
margin: 0 20px;
}
.navbar {
width: 100%;
}
}
@media (max-width: 768px) {
/*change font size */
h1 {
font-size: 36px;
}
h2 {
font-size: 24px;
}
h3 {
font-size: 16px;
}
h4 {
font-size: 14px;
}
/*Add margin to container fluid*/
.container-fluid {
margin: 0 20px;
}
.navbar {
width: 100%;
}
/*logo effects */
div.logo img{
margin: 1px 10px;
height: 45px;
width: 45px;
}
/* reduce font size links in home page */
section#section_two_projects div p a {
font-size: 14px;
}
/*reduce margin top */
#section_two_about {
margin-top: 80px;
}
/* wrap content in about page */
div#flex-container {
flex-flow: row wrap;
}
/* remove box shadow from image in about page
increase width to 100%
*/
div#flex-container div img {
box-shadow: none;
width: 100%;
}
/* justify icons to the left section three and reduce margin top in about page*/
div#icons {
margin-top: 50px;
}
div#icons ul {
justify-content: left;
}
/* comet page overview */
div#cometAppOverview {
flex-flow: row wrap;
row-gap: 20px;
}
/* percentages in comet page and wireframe testing*/
div#contain-percentage {
flex-flow: row wrap;
row-gap: 20px;
}
div#wireframe-testing {
flex-flow: row wrap;
row-gap: 20px;
}
div#wireframe-testing div {
width: 100%;
}
div#cometAppOverview div {
width: 100%;
}
/* reduce emoji size */
#flex-container-2 div img {
height: 50px;
width: 50px;
}
/* reduce margin to footer */
section div.one {
margin-top: 100px;
}
.icon-navbar {
visibility: visible;
}
#footer {
margin-bottom: 40px;
}
span#interested {
font-size: 18px;
}
img.image {
width: 100% !important;
}
img#face_image {
display: none;
}
section#section_two_about div div img {
width: 100%;
height: 450px;
}
section#section_two_about div h3 {
margin-top: 20px;
}
section#section_three_about div.row {
width: 100%;
margin-left: 0;
margin-right: 0;
}
section#section_three_about div div ul li {
padding-left: 0px;
}
/* images at projects page
add margin top */
.add_margin_top {
margin-top: 50px;
}
/* increase padding top to figcaptions */
figcaption {
padding-top: 10px;
}
/*remove padding in comet page section three*/
.flex-container {
padding: 0 0;
}
}