-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsDash.css
98 lines (91 loc) · 2 KB
/
jsDash.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
body{
font-family: roboto;
}
.main{
display:flex;
flex-direction:column;
align-items:center;
border:2px rgb(95, 8, 139) solid;
width:40%;
margin-left:500px;
position: relative;
background-color: rgb(240, 245, 250);
flex-wrap:wrap;
}
.welcome{
font-size: 50px;
font-weight: bold;
margin-top:0;
margin-bottom:0;
color: rgb(6, 64, 112);
}
.main-div{
display:flex;
flex-direction:row;
justify-content: space-between;
margin:15px;
padding:15px;
}
.main-div-image{
border:5px rgb(4, 80, 137) solid;
border-radius:20px;
padding:4px;
height:80px;
width:80px;
}
.image-info{
height:80px;
width:80px;
}
.main-div-button{
height:50px;
width:200px;
margin-top:22px;
margin-left:70px;
border:none;
background-color: rgb(13, 49, 115);
font-weight: bold;
font-size: 25px;
color:white;
border-radius:10px;
box-shadow: -6px -5px 5px rgba(255, 255, 255, 0.8), 3px 2px 5px rgba(0, 0, 0, 0.8);
}
.main-div-button:hover{
transform: scale(1.05);
transition-duration: 0.2s;
background-color: rgb(33, 10, 103);
cursor:pointer;
}
.jobseeker-logout{
height:50px;
width:200px;
margin-bottom:20px;
background-color:rgb(251, 38, 0);
border:none;
border-radius:10px;
box-shadow: -6px -5px 5px rgba(255, 255, 255, 0.8), 3px 2px 5px rgba(0, 0, 0, 0.8);
font-size:30px;
font-weight:bold;
color:white;
}
.jobseeker-logout:hover{
transform: scale(1.05);
transition-duration: 0.2s;
background-color: rgb(176, 20, 20);
cursor:pointer;
}
.close-button{
position: absolute;
top:5px;
right:5px;
background-color:rgb(240, 245, 250);
border:none;
}
.close{
height:40px;
cursor:pointer;
}
.close:hover{
transform: scale(1.1);
transition-duration: 0.2s;
}