-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdashb.css
91 lines (80 loc) · 1.62 KB
/
dashb.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
body{
border: 0px;
margin: 0%;
padding: 0px;
}
.container {
display: flex;
flex-direction: column;
/* height: 100vh; */
}
.nav {
display: flex;
flex: 0.02;
background-color: #4481eb;
/* background-color: red; */
justify-content: space-between;
}
.nav > p{
font-size: 35px;
font-weight: 900;
line-height: 0%;
color: #333;
padding-left: 25px;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.logb {
background-color: #333;
border: none;
padding: 10px;
margin: 12px;
color: white;
font-size: 20px;
width: 100px;
border-radius: 30px;
cursor: pointer;
}
.logb:hover {
background-color: #444;
}
.wtext {
display: flex;
flex-direction: row;
flex: 0.1;
color: #000;
font-size: 28px;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-weight: 400;
line-height: 0%;
padding-left: 28px;
}
.uactions {
display: flex;
justify-content: space-around
}
.item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
height: 560px;
}
.actionb {
background-color: #4481eb;
color: white;
font-size: 20px;
border-radius: 30px;
width: 100%;
margin: 10px;
height: 100%;
cursor: pointer;
border: 3px solid white;
}
.actionb:hover {
border: 3px solid rgb(147, 214, 24);
cursor: pointer;
}
img {
width: 50%;
height: 90%;
}