-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (79 loc) · 1.57 KB
/
Copy pathstyle.css
File metadata and controls
92 lines (79 loc) · 1.57 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
body{
background : transparent;
}
body::before{
content: "";
background-image: url('./BG.jpg');
background-position: center;
background-repeat: no-repeat;
position: fixed;
width: 100%;
min-height: 100%;
background-size: cover;
z-index: -1;
top: 0px;
left: 0px;
opacity:0.5;
}
nav{
position: fixed;
top: 0;
}
h1{
padding: 20px;
color: rgb(71, 30, 30);
text-shadow: 2px 2px rgb(128, 63, 63);
}
h2{
text-shadow: 2px 2px rgb(128, 63, 63);
padding: 20px;
font-weight: bolder;
}
.card-body{
background: url('d.jpg');
background-repeat: no-repeat;
background-size: cover;
box-shadow:0px 0px 20px 5px rgb(73, 30, 17);
border-radius: 5px;
}
#addBtn{
background-color: rgb(138, 90, 90);
border: 1px solid rgb(138, 90, 90);
}
/*.noteLable{
display: inline-flex;
float: right;
cursor: pointer;
border: 1px solid transparent;
background-color: transparent;
}*/
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
/*Position the tooltip */
position: absolute;
z-index: 1;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
/*
.tooltip .tooltiptext {
width: 120px;
bottom: 100%;
left: 50%;
margin-left: -60px /* Use half of the width (120/2 = 60), to center the tooltip
} */
.far{
cursor: pointer;
}