-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
137 lines (117 loc) · 2.15 KB
/
styles.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
129
130
131
132
133
134
135
136
137
*{margin: 0;
padding: 0;
text-decoration: none;
font-family: "Ubuntu",sans-serif;
box-sizing: border-box;
}
html, body{
height: 100%;
}
body{
background : url("image/bg.png") no-repeat center;
background-size:cover;
height:100%;
display:flex;
justify-content: center;
align-items: center;
}
.container{
width:400px;
text-align: center;
border-radius: 8px;
overflow: hidden;
}
.profile-header{
background-color:#496e9c;
padding :60px 40px;
text-transform: uppercase;
}
.profile-img{
display:inline-block;
padding: 8px;
background: linear-gradient(130deg,#4fff8c94,#84f5ff);
margin : auto ;
border-radius: 50%;
background-size:200% 200%;
animation: animated-gradient 2s linear infinite;
}
@keyframes animated-gradient {
25%{
background-position: left bottom;
}
50%{
background-position: right bottom;
}
75%{
background-position: right top;
}
100%{
background-position: left top;
}
}
.profile-img img{
display:block;
width:100px;
height:100px;
border-radius: 50%;
}
h1{
color:#fff;
font-size: 1.7rem;
font-weight: 600;
margin: 10px 0;
}
h2{
font-size: 1.2rem;
color:rgb(79 241 255);
}
.contact{
display: flex;
justify-content: center;
margin:20px;
}
.contact a{
color:#fff;
width:56px;
font-size: 1.3rem;
transition: .3s linear;
}
.contact a:hover {
color:rgb(79 241 255);
}
.contact-btn{
text-transform: uppercase;
display: inline-block;
color:rgb(79 241 255);
padding:12px 50px;
border: 2px solid rgb(79 241 255);
border-radius: 6px;
margin-top:16px;
transition:.3s linear;
}
.contact-btn:hover{
color:#fff;
background-color:rgb(79 241 255);
}
.profile-footer{
background-color: #fff;
display : flex;
justify-content:space-between;
}
.item{
padding-top:10px;
font-size: 0.8rem;
margin: 10px 30px;
height:100px;
color:#4ff1ff;
text-transform: uppercase;
}
.item span{
font-weight: bold;
font-size: 1.8rem;
color: #000354c9;
}
.border{
width: 1px;
background-color:#444;
}