-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofile_page.css
106 lines (94 loc) · 1.76 KB
/
profile_page.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
@import url('https://fonts.googleapis.com/css?family=Montserrat:500');
:root{
--primary-color: #6666ff;
--dark-color: #141414;
}
*{
margin: 0;
padding: 0;
font-family: "Montserrat", sans-serif;
}
.main{
padding: 10px 10%;
color: #141414;
margin: 0 auto;
margin-top: 100px;
}
input[type="text"], input[type="email"]{
border-radius: 10px;
outline: none;
border: 1px solid var(--dark-color);
padding: 10px;
text-align: center;
color: darkgrey;
width: 350px;
font-size: 18px;
margin-bottom: 30px;
}
.name, .phone, .email, .address{
padding: 30px;
}
.name_phone, .email_add{
display: flex;
}
.name_phone span, .email_add span,
.status span, .photo
{
color: var(--primary-color);
font-weight: 600;
padding: 10px;
}
.submit, .upload_btn{
margin-top: 10px;
padding: 15px;
border-radius: 50px;
border: 1px solid var(--primary-color);
color: var(--primary-color);
font-size: 18px;
background: none;
outline: none;
cursor: pointer;
}
.submit{
justify-content: center;
}
.justify-submit{
text-align: right;
}
h2{
text-align: center;
color: #141414;
padding-bottom: 20px;
margin-bottom: 10px;
}
.submit:hover, .upload_btn:hover{
background-color: var(--primary-color);
color: antiquewhite;
}
main{
margin: 0 auto;
padding: 30px;
margin-bottom: -80px;
}
.upload_btn2{
margin-top: 30px;
padding: 15px;
border-radius: 50px;
border: 1px solid var(--primary-color);
color: #fff;
width: 30%;
font-size: 18px;
background: var(--primary-color);
outline: none;
cursor: pointer;
}
main :nth-child(1){
margin-bottom: 10px;
}
.status{
padding-top: 20px;
}
a{
text-decoration: none;
color: #faebd7;
}