-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
executable file
·117 lines (110 loc) · 2.01 KB
/
styles.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html {
font-family: Arial, Helvetica, sans-serif;
}
.header {
display: flex;
justify-content: space-between;
padding: 2vh 8vw;
align-items: center;
}
.header img {
height: 45px;
width: auto;
}
.header button {
background-color: #272626;
color: #fff;
font-size: 16px;
padding: 10px 30px;
border-radius: 5px;
font-weight: bold;
text-decoration: none;
border: none;
cursor: pointer;
}
.header button:hover {
background-color: #393838;
}
.banner {
background-image: url("./img/astronaut-6051759_1920-edited-1.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 65vh;
display: flex;
justify-content: center;
align-items: center;
}
.banner--overlay {
background-color: rgba(0, 0, 0, 0.417);
mix-blend-mode: normal;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.banner h1 {
color: #fff;
font-size: 35px;
text-align: center;
}
.projects h2 {
text-align: center;
font-size: 45px;
margin-top: 5vh;
}
.projects__view {
display: flex;
flex-wrap: wrap;
padding: 5vh 8vw;
gap: 5vw;
justify-content: space-evenly;
}
.projects__view__card {
display: flex;
flex-direction: column;
align-items: center;
width: 300px;
padding: 3vh 2vw;
border-radius: 30px;
box-shadow: 0px 10px 15px rgba(46, 77, 229, 0.183);
}
.projects__view__card img {
object-fit: cover;
width: 100%;
border-radius: 10px;
}
.projects__view__card h3 {
margin-top: 3vh;
margin-bottom: 4vh;
}
.projects__view__card a {
background-color: #9463ae;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
font-weight: bold;
text-decoration: none;
cursor: pointer;
}
.projects__view__card a:hover {
background-color: #a56fc2;
}
footer {
display: flex;
justify-content: center;
align-items: center;
height: 20vh;
background-color: #0f0f0f;
}
footer p {
color: #fff;
font-size: 18px;
}
/*# sourceMappingURL=styles.css.map */