-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (48 loc) · 859 Bytes
/
style.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
*{
text-decoration: none;
box-sizing: border-box;
padding: 0;
margin: 0;
}
body{
background: rgb(249,249,249);
background: radial-gradient(circle, rgba(249,249,249,1) 8%, rgba(236,236,236,1) 76%, rgba(214,214,214,1) 100%);
}
.title{
display: flex;
flex-direction: row;
justify-content: center;
margin-top: 80px;
}
.images{
max-width: 100%;
}
.container{
display: flex;
justify-content: center;
margin: 0 auto;
max-width: 80%;
}
.projects{
display: flex;
flex-direction: column;
align-items: center;
margin: 80px 15px 0 15px;
}
.titleProjects{
color: black;
font-size: 24px;
margin-bottom: 10px;
}
.titleProjects:hover{
color: #2a61a9;
}
.rep{
position: absolute;
color: black;
font-size: 28px;
bottom: 50px;
}
.rep:hover{
color: #2a61a9;
}