-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStyle.css
More file actions
102 lines (89 loc) · 1.49 KB
/
Copy pathStyle.css
File metadata and controls
102 lines (89 loc) · 1.49 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
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
*{
box-sizing:border-box;
scroll-behavior: smooth;
}
body{
margin:0px;
padding: 0px;
font-family: poppins;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color:#1db096;
}
li {
float: right;
}
li a {
display: block;
color: dimgrey;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: lightgray;
}
.model img{
object-fit: contain;
border-radius: 50%;
width:450px;
height: 450px;
}
.content{
width:100%;
display: flex;
align-items: center;
justify-content: space-around;
position: relative;
margin-top: 20px;
}
.main-text{
width:500px;
}
h2{
font-size: 2.7rem;
color:#1c3548;
margin:0px 0px 10px 0px;
line-height: 60px;
}
p {
color:#747474;
}
.portfolio-btn{
width:190px;
height: 44px;
display: flex;
justify-content: center;
align-items: center;
color:white;
background-color: #1db096;
border-radius: 20px;
box-shadow: 4px 10px 30px rgba(24,139,119,0.2);
}
.portfolio-btn:hover{
background-color: #23cdaf;
transition: all ease 0.2s;
}
#contact img {
padding: 25px;
background-repeat: no-repeat;
background-size: cover;
}
.fa {
padding: 20px;
font-size: 2em;
width: 20px;
height: 10px;
text-align: center;
text-decoration: none;
margin: 5px 2px;
border-radius: 50%;
float: center;
}
.fa:hover {
opacity: 0.7;
}