-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (106 loc) · 2.17 KB
/
style.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
* {
box-sizing: border-box;
}
body{
align-items: center;
background-color: #9DAAF2;
/* background-image: linear-gradient(147deg, #c3cbdc 0%, #edf1f4 74%); */
}
/* INPUT FIELD */
input{
padding: 8px;
border-radius: 40px;
width: 60%;
border: none;
box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
textarea:focus, input:focus{
outline: none;
}
#form{
display:flex;
justify-content: center;
}
.search-btn {
background-color: transparent;
border: none;
box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
padding: 4px 10px;
}
.checked {
/* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
background-color: white;
}
.userCard{
padding: 30px;
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.starred{
font-size: 1.4rem;
}
.userCard img{
border: 2px solid black;
border-radius: 50%;
width: 150px;
height: 150px;
padding: 4px;
}
.details{
padding-top: 10px;
}
.options{
padding: 12px;
}
ul{
list-style-type: none;
;
}
a{
text-decoration: none;
color: black;
}
a:hover{
color:black;
}
.profile-link:hover{
background-color: white;
color:black;
}
.profile-link{
background-color: transparent;
border: none;
box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
padding: 4px 10px;
}
/* SIDE NAV */
#mySidenav div {
position: absolute;
left: -70px;
transition: 0.3s;
padding: 15px;
width: 100px;
text-decoration: none;
font-size: 20px;
color: white;
border-radius: 0 5px 5px 0;
}
#mySidenav div:hover {
left: -60px;
}
.color-1 {
top: 200px;
background-color: #19ffabc3;
/* background-color: rgb(94, 137, 202); */
}
.color-2 {
top: 280px;
background-color: paleturquoise;
}
.color-3{
top:360px;
background-color: #F4DB7D;
}
.color-4 {
top: 440px;
background-color: #C39EA0;
}