-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
81 lines (72 loc) · 1.22 KB
/
App.css
File metadata and controls
81 lines (72 loc) · 1.22 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
body{
background-color: rgb(255, 255, 255);
}
.navbar{
background-color: rgb(40, 40, 40);
}
.nav-items{
display: flex;
}
button{
margin-left: 1150px;
height: 45px;
width: 120px;
border-radius: 8px;
background-color:rgb(4, 0, 255);
color: white;
font-weight: bold;
font-family:Arial, Helvetica, sans-serif
}
button:hover{
background-color: white;
color: black;
}
.avatar{
border-radius: 50%;
}
#main{
padding: 25px 50px;
margin-left:auto;
margin-right: auto;
display: none;
}
.profile{
box-shadow: 0 2px 4px 0 rgba(208, 208, 208, 0.2);
width: 300px;
margin: 20px;
text-align: center;
font-family: arial;
padding: 25px;
border-radius: 18px;
background-color: white;
}
.profile:hover{
transition: 200ms;
box-shadow: 16px 16px 16px 16px rgb(46, 46, 46);
transform: translateY(-3px);
}
.email{
color:black;
font-size: 18px;
overflow-wrap: anywhere;
}
.name{
padding-top: 20px;
font-size: 25px;
font-weight: bold;
text-decoration: underline;
text-decoration-color: black;
}
.loader{
margin-left: auto;
margin-right: auto;
}
.h2{
font-weight: bold;
color: rgb(255, 255, 255);
font-family: cursive;
margin-left: 30px;
}
.footer{
text-align: center;
}