-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathProfile CSS.css
109 lines (100 loc) · 2.01 KB
/
Profile CSS.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
font-family: 'Poppins', sans-serif;
}
body{
background: linear-gradient(120deg,#2980b9,#8e44ad);
overflow-x: hidden;
}
.container{
background: #fff;
width: 540px;
height: 470px;
margin: 0 auto;
position: relative;
margin-top: 10%;
box-shadow: 2px 5px 20px rgba(119,119,119,0.5);
}
.leftbox{
float: left;
top: -5%;
left:5%;
position: absolute;
width: 15%;
height: 110%;
background: linear-gradient(120deg,#2980b9,#8e44ad);
box-shadow: 3px 3px 10px rgba(119,119,119,.5);
border: .1em solid #fff;
}
nav a{
list-style: none;
padding: 35px;
color: #fff;
font-size: 1.1em;
display: block;
transition: all .3s ease-in-out;
}
nav a:hover{
color: #00538a;
cursor: pointer;
transform: scale(1.2);
}
nav a:first-child{
margin-top: 7px;
}
nav a.active{
color:#00538a;
}
.rightbox{
width: 60%;
margin-left: 27%;
/* padding: 5px; */
}
.tabShow{
transition: all .5s ease-in;
width: 80%;
position: absolute;
}
h1{
color: #2980b9;
font-size: 1.2rem;
margin-top: 40px;
margin-bottom: 35px;
}
h2{
color: #777;
text-transform: uppercase;
font-size: 8px;
letter-spacing: 1px;
margin-left: 2px;
margin-top: 10px;
}
.input,p{
border: 0;
border-bottom: 1px solid #3fb6a8;
width: 80%;
font-size: .7em;
padding: 7px 0;
color: #070707;
outline: none;
}
span{
font-size: .7em;
color: #777;
}
.btn{
text-transform: uppercase;
font-size: 15px;
border:0;
color: #fff;
background: linear-gradient(120deg,#2980b9,#8e44ad);
padding: 7px 15px;
box-shadow: 0px 2px 4px 0px rgba(0,0,0,.2);
cursor: pointer;
margin-top: 15px;
}
.tabShow{
transition: all 0.5s ease-in;
width: 80%;
position: absolute;
}