-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewProjects.css
97 lines (88 loc) · 1.52 KB
/
viewProjects.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
.wrapper {
width: 90%;
margin: auto;
/* background-color: white; */
border-radius: 10px;
box-shadow: 2px 3px 22px #e0dfdf;
}
.buttonWrapper {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
button {
letter-spacing: 3px;
border: none;
padding: 10px;
background-color: #fff;
color: black;
font-size: 18px;
cursor: pointer;
transition: 0.5s;
}
button:hover {
background-color: orange;
color: white;
}
button.activeClass {
background-color: orange;
color: white;
}
.activeClass {
background-color: white;
color: rgb(165, 163, 163);
}
p {
text-align: left;
padding: 10px;
}
.content {
display: none;
padding: 10px 20px;
}
.content.activeClass {
display: block;
}
.contentWrapper {
padding: 4rem 1rem;
}
body.dark .contentWrapper,
body.dark .content {
background-color: #1e272e;
color: #fff;
}
/* body.dark .nav-link .active a {
background-color: #1e272e;
color: #fff;
} */
.contentWrapper .card {
height: 520px;
/* background-color: aqua;*/
}
.card {
color: black;
}
.content img {
float: center;
width: 250px;
display: grid;
place-items: center;
margin: 1rem auto;
opacity: 0.7;
}
/* @media screen and (max-width: 768px) {
.card-container {
margin: auto 2rem;
display: grid;
grid-template-columns: repeat(1, 2rem);
row-gap: 30px;
}
}
@media screen and (min-width: 769px) and (max-width: 992px) {
.card-container {
margin: auto 2rem;
display: grid;
grid-template-columns: repeat(3, 1fr);
row-gap: 30px;
column-gap: 10px;
}
} */