-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (48 loc) · 913 Bytes
/
Copy pathstyle.css
File metadata and controls
62 lines (48 loc) · 913 Bytes
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
body{
background-image: linear-gradient( 102.1deg, rgba(96,221,142,1) 8.7%, rgba(24,138,141,1) 88.1% );
}
.profil{
text-align: center;
margin-top: 50px;
}
.profil img{
width: 200px;
height: 200px;
border-radius: 50%;
border: 5px solid #fff;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.box-container{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.box1{
width: 50%;
height: 40px;
margin: 10px;
border-radius: 10px;
transition: 0.5s;
cursor: pointer;
background: #40868B;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
li {
list-style: none;
text-align: center;
font-weight: bold;
margin-top: -10px;
}
li a {
text-decoration: none;
color: #000;
font-size: 20px;
font-weight: bold;
margin-top: -10px;
}
.box1:hover{
transform: scale(1.1);
}
li a:hover{
color: #fff;
}