-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlearn.css
More file actions
56 lines (48 loc) · 1.06 KB
/
learn.css
File metadata and controls
56 lines (48 loc) · 1.06 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
.learn {
height: calc(100vh - 69px);
overflow-y:scroll;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.learnImg {
position: relative;
background-image: url("images/learn.png");
background-size: cover;
width: 100%;
height: 100px;
background-position: center;
background-repeat: no-repeat;
}
.learntab {
background: rgb(165,156,249);
background: linear-gradient(180deg, rgba(165,156,249,1) 0%, rgba(134,176,248,1) 54%, rgba(165,156,249,1) 100%);
}
.learnTabsBtn {
width: 50%;
height: 100%;
font-size: x-large;
float: left;
text-align: center;
color: black;
background-color:#ffffff00;
color:black;
border:none;
float:left;
text-align: center;
vertical-align: middle;
}
@media (max-width: 450px) {
.learn {
height: calc(100% - 120px);
}
}
.learn::-webkit-scrollbar {
display: none;
}
.learnTabs div {
padding: 1ch;
background-color: #fb78c988;
}
.learnTabs div:nth-child(odd) {
background-color: #f8afdc88;
}