-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (69 loc) · 1.24 KB
/
style.css
File metadata and controls
93 lines (69 loc) · 1.24 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
body{
font-family:'Inter', sans-serif;
margin: 0;
color: #fff;
}
.container{
max-width: 428px;
margin: 0 auto;
background-color: #313438;
min-height: 100vh;
}
.header{
display: flex;
justify-content: space-evenly;
color: #fff;
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(45,147,186,1) 35%, rgba(0,212,255,1) 100%);
padding: 2em 0;
align-items: center;
}
.contact-search{
font-size: 1.2em;
padding: .3em;
border-radius: 100px;
border: 1px solid #fff;
outline: none;
}
i{
font-size:1.5em ;
}
.contact-name{
font-size: 1.2em;
}
ul{
margin: 0;
padding: 0;
width: 100%;
}
hr{
border: 1px solid #494a4b;
}
.list__item{
list-style: none;
}
.relationship{
width: 6em;
text-align: center;
padding: .4em .5em;
border-radius: 100px;
border-top-left-radius:0;
background-color: #75a85e;
font-size: .8em;
}
.contact-section{
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 1.5em;
transition: 0.3s;
}
.contact-section:hover{
background-color: #48494a;
}
.text{
padding-left: 1em;
}
a{
text-decoration: none;
color: #fff;
}