-
Notifications
You must be signed in to change notification settings - Fork 19
/
style.css
119 lines (99 loc) · 1.58 KB
/
style.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
.images img:hover{
transition: all .5s ease;
transform: scale(1.1);
cursor: pointer;
box-shadow: 10px 10px 15px gray;
}
.subheading{
color: red;
text-align: center;
}
.images {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.images img {
width: 50%;
height: 30rem;
margin: 20px 0;
margin-left: 10px;
margin-right:2rem ;
}
@media (min-width: 600px) {
.images > img {
width: 47%;
}
}
@media (min-width: 1025px) {
.images > img {
width: 30%;
}
.images > img {
width: 30%;
}
}
footer div {
display: flex;
align-items: center;
justify-content: space-around;
padding: 75px 25px;
background-color: rgb(252, 221, 182);
}
body {
font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
margin: 0;
}
.about-container {
display: flex;
flex-direction: column;
padding: 2% 20%;
background-color: whitesmoke;
}
.heading {
font-size: 50px;
}
.about-container h3 {
font-size: 25px;
font-weight: 450;
}
.github-link {
text-decoration: none;
font-weight: bold;
font-size: 20px;
}
.images > img {
width: 100%;
margin: 10px 0;
}
header .nav {
display: flex;
position: absolute;
width: 100%;
left: 0;
top: 0;
justify-content: center;
align-items: center;
text-align: center;
flex-direction: row;
background-color: #FCDDB6;
box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.nav img {
margin-right: 10px;
height: 80%;
}
main {
margin-top: 100px;
}
@media (min-width: 600px) {
.images > img {
width: 47%;
}
}
@media (min-width: 1025px) {
.images > img {
width: 30%;
}
}