-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio_style.css
128 lines (121 loc) · 2.09 KB
/
portfolio_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
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
118
119
120
121
122
123
124
125
126
127
128
*{
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
.hero{
height: 100vh;
width: 100%;
background-image: url(black.jpg);
background-size: cover;
background-position: center;
}
.logo{
color: white ;
font-size: 35px;
letter-spacing: 10px;
cursor: pointer;
}
span{
color: deeppink;
}
.nav{
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 45px;
padding-left: 8%;
padding-right: 8%;
}
ul li {
display: inline-block;
padding: 10px 30px;
}
ul li a{
color: white;
text-decoration: none;
}
ul li a:hover{
color: yellow;
}
.btn{
background-color: red;
color: white;
text-decoration: none;
border: 2px solid transparent;
font-weight: bold;
padding: 10px 25px;
border-radius: 30px;
transition: transform .4s;
}
.btn:hover{
transform: scale(1.1);
}
.content{
position: absolute;
top: 50%;
left: 8%;
}
h1{
color: white;
margin: 20px 0 20px;
font-size: 70px;
}
h3{
color: white;
font-size: 20px;
margin-bottom: 50px;
}
h4{
color: white;
font-size:20px;
letter-spacing: 2px;
}
.form{
width: 400px;
max-width: 100%;
position: relative;
}
.form input:first-child{
width: 100%;
display: inline-block;
padding: 14px 13px 14px 15px;
border:2px solid #f9004d;
border-radius: 30px;
}
.form input:last-child{
position: absolute;
display: inline-block;;
border: none;
border-radius:30px;
padding: 10px 30px;
background-color: red;
color: white;
top : 6px;
right: 6px;
}
.icon{
display: inline-flex;
padding-left: 100%;
text-align: center;
justify-content: space-between;
cursor: pointer;
}
.icon a {
background-color: white;
width: 50px;
height: 50px;
border: 15px solid transparent;
border-radius: 30px;
margin: 8px;
transition: transform .4s;
}
.icon .fa{
font-size: 25px;
color: deeppink;
background-color: white;
font-weight: bold;
}
.icon a:hover{
transform: scale(1.1);
}