-
Notifications
You must be signed in to change notification settings - Fork 0
/
style1.css
89 lines (76 loc) · 1.21 KB
/
style1.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
* {
box-sizing: border-box;
font-family: fantasy, sans-serif;
padding: 0;
margin: 0;
}
.wrapper {
margin: 0 auto;
width: 100%;
}
.nav-link {
color: black;
text-decoration: none;
}
.main-menu {
list-style: none;
}
.main-menu__item {
background: #30f2c5;
display: block;
outline: none;
text-decoration: none;
}
.main-menu__item:link,
.main-menu__item:visited {
color:black;
}
.main-menu__item:hover {
color: blueviolet;
text-decoration: underline;
}
.main-menu__item:active {
text-shadow: 0 0 3px black;
}
.portfolio-container {
font-size: 0;
list-style: none;
}
.portfolio__item {
display: block;
float: left;
height: auto;
margin: 0.5% 0.5%;
width: 20%;
}
.portfolio-container::after {
content: "";
display: table;
clear: both;
}
@media screen and (max-width: 988px) {
.portfolio__item{
margin: 0.3% 0.6%;
width: 32%;
}
}
@media screen and (max-width: 400px) {
.wrapper {
width: 90%;
}
.logo {
text-align: center;
}
.main-menu__item {
margin: 0 auto;
text-align: center;
}
.portfolio__item {
float: none;
margin: 10px auto;
width: 100%;
}
footer {
text-align: center;
}
}