-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
121 lines (96 loc) · 2.17 KB
/
Copy pathstyles.css
File metadata and controls
121 lines (96 loc) · 2.17 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
position: relative;
}
html,
body {
width: 100%;
font-size: 62.5%;
font-family: Arial, Helvetica, sans-serif;
}
@media(width <= 992px){
html, body{
font-size: 56.25%;
}
}
@media (width <= 576px) {
html, body{
font-size: 50%;
}
}
nav {
& .container {
font-size: 2rem;
color: white;
background-color: rgba(184, 135, 11, 0.829);
}
& ul {
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
& li {
list-style: none;
padding: 2rem 3rem;
& a {
text-decoration: none;
color: white;
}
& a:hover {
color: rgb(202, 195, 175);
}
}
}
}
main {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
& .container {
display: flex;
align-items: center;
justify-content: center;
padding: 5rem 2rem;
& h1 {
font-size: 3rem;
}
}
& .projects {
width: 85%;
display: flex;
align-items: center;
justify-content: center;
gap: 3rem;
flex-wrap: wrap;
padding: 2rem;
& .card {
display: flex;
align-items: center;
flex-direction: column;
height: 18rem;
width: 30rem;
box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
border-radius: 1rem;
margin-bottom: 2rem;
& .button {
font-weight: 600;
font-size: 1.6rem;
padding: 1rem 2rem;
border-radius: 5px;
border: 1px solid black;
& a {
text-decoration: none;
color: black;
cursor: pointer;
}
}
& .card-title {
font-size: 2rem;
padding: 3rem 0 2rem 0;
}
}
}
}