-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainStyle.css
More file actions
77 lines (65 loc) · 1.33 KB
/
mainStyle.css
File metadata and controls
77 lines (65 loc) · 1.33 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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
margin: 0;
box-sizing: border-box;
padding: 0;
}
body{
background-color: #0e0f1d;
font-family: "Open Sans", sans-serif;
}
a{
list-style: none;
text-decoration: none;
color: black;
}
.container{
width: 100%;
max-width: 75rem;
margin: 0 auto;
padding: 1rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 3rem;
color: white;
}
.projects{
display: flex;
flex-direction: row;
gap: 3rem;
width: 100%;
margin-top: 3rem;
}
@media screen and (max-width: 600px) {
.container{
align-items: start;
justify-content: start;
}
.projects{
flex-direction: column;
width: 100%;
}
}
.projects .projectsBlock{
width: 100%;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.projects .projectsBlock .projectItem{
color: #95a9bb;
display: inline-block;
background-color: #252f38;
width: 100%;
padding: 1rem;
border-radius: .25rem;
font-size: .8rem;
font-weight: 600;
border: 1px solid transparent;
transition: .2s ease-in-out;
}
.projects .projectsBlock .projectItem:hover{
border: 1px solid #5d7183;
}