-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
122 lines (115 loc) · 2.18 KB
/
styles.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
h1{
margin: 0;
background-color: beige;
text-align: center;
}
.underline {
background:
linear-gradient(currentColor 0 0)
0 100% /var(--d, 0) 3px
no-repeat;
transition:0.5s;
}
.underline:hover {
--d: 100%;
}
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted rgb(8, 15, 205);
}
.tooltip .tooltiptext {
/* visibility: visible; */
width: 120px; /*kettu mothu dabba pahijhe */
background-color:beige;
color: #060505;
text-align: center;
border-radius: 6px;
padding: 5px 0; /*spacing betn ur box and text*/
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -60px;
opacity: 0;
transition: opacity 0.5s;
}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
.notes {
width: 60%;
margin: auto;
}
/*light dark mode*/
body {
padding: 25px;
background-color: white;
color: black;
font-size: large;
}
.dark-mode {
background-color: rgb(37, 34, 34);
color: white;
}
/* .fa-moon{
} */
/* div[class] {
display:inline-block;
font-size:18px;
font-family:sans-serif;
margin:25px;
padding-bottom:5px;
cursor:pointer;
} */
/* div[class]:nth-child(odd) {
color:darkblue;
} */
/* body{
text-align: center;
margin: 0;
padding: 0;
height: 100vh;
background-color: bisque;
display: flex;
align-items: center;
justify-content: center;
}
.container{
display: flex;
gap: 20px;
}
.box{
background-color: cadetblue;
}
.h1{
color: #95ff00;
text-shadow: 0px 0px 20px #ffff31;
font-family: sans-serif;
font-size: 50px;
}
.box{
animation: move 3s forwards ease-in-out;
border-left: 2px solid #fbff00;
}
@keyframes move2{
from {
margin-left: -410px;
width: 400px;
}
to{
margin-left: 0;
width: 0;
}
} */