-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPortfolio.css
109 lines (94 loc) · 1.79 KB
/
Portfolio.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.hero{
position: relative;
width: 100%;
height: 100vh;
background: background-color: #9fa4c4;
background-image: linear-gradient(315deg, #9fa4c4 0%, #9e768f 74%);
}
nav{
width: 84%;
display: flex;
margin: auto;
padding: 20px 0;
align-items: center;
justify-content: space-between;
}
nav p{
width: 60px;
height: 30px;
font-size: 30px;
font-weight:bold ;
font-family: 'Times New Roman', Times, serif;
color: rgb(13, 13, 66);
text-shadow: 1px 1px white;
}
nav ul li{
display: inline-block;
list-style: none;
margin: 10px 20px;
}
nav ul li a{
text-decoration: none;
color: #000;
font-weight:bold ;
display: flex;
}
nav ul li a:hover{
color: red;
}
.detail{
margin-left: 6%;
margin-top: 13%;
}
.detail h1{
font-size: 50px;
color: #212121;
margin-bottom:20px ;
}
span{
color: rgb(81, 59, 18);
}
.detail p{
color: #000;
line-height: 22px;
}
.detail a{
background: black;
color: white;
text-decoration: none;
font-weight: bold;
display: inline-block;
padding: 10px 20px;
margin: 30px 0;
border-radius: 5px;
transition: 0.5s;
}
.detail a:hover{
color: black;
background: white;
}
.images{
width: 20%;
height: 20%;
bottom: 0;
right: 100px;
}
.images img{
position: absolute;
height: 50%;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;;
border-radius: 50%;
left: 75%;
bottom: 0;
transform: translateX(-50%);
transition: bottom 1s;
margin-bottom: 90px;
}
.images img:hover{
bottom: 20px;
}