-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelf-help.css
139 lines (117 loc) · 2.22 KB
/
Self-help.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
body {
background: rgb(80, 80, 80);
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 14px;
color:#000;
margin: 0;
padding: 0;
}
/*== Navigation Bar ==*/
.navbar{
font-size: 1rem;
letter-spacing: .1rem;
background: rgba(0, 0, 0, 0.66)!important;
}
.navbar-brand img{
height: 3rem;
}
.navbar-nav li{
padding-right: .7vw;
}
.navbar-dark .navbar-nav .nav-link{
color: white;
padding-top: .8vw;
}
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover{
color: #99f8f3;
}
/*Header*/
.Header{
justify-content: center;
}
.Header h1{
color: rgb(255, 145, 0);
}
.Header p{
color: rgb(0, 225, 255);
}
/*Motivation*/
#motivation h2{
color: red;
}
#motivation img{
border-radius: 2rem 2rem 0 0;
}
.swiper-container-music, .swiper-container-motivation {
width: 100%;
padding-top: 3rem;
padding-bottom: 3rem;
text-align: center;
margin-top: -2.5rem;
overflow: hidden;
}
#motivation .swiper-slide {
background-size: cover;
width: 250px;
height: 330px;
background: #6bff66;
border-radius: 2rem;
color: rgb(252, 0, 218);
font-weight: bold;
}
/*Study Music*/
#music h3{
color: rgb(255, 50, 245);
}
#music .swiper-slide {
background-size: cover;
width: 400px;
height: 340px;
background: #66ff66;
border-radius: 2rem;
}
#music .img {
background-size: cover;
width: 400px;
height: 300px;
border-radius: 2rem 2rem 0 0;
}
@media (max-width: 768px) {
.navbar{
font-size: .8rem;
}
#music h3{
font-size: 1rem;
font-weight: bold;
}
#music .swiper-slide {
width: 280px;
height: 230px;
border-radius: 1rem;
}
#music .img {
width: 280px;
height: 210px;
border-radius: 1rem 1rem 0 0;
}
#motivation h2{
font-size: 1rem;
font-weight: 600;
}
#motivation p{
font-size: .7rem;
margin-top: -.5rem;
}
#motivation img{
width: 175px;
height: 175px;
border-radius: 1rem 1rem 0 0;
}
#motivation .swiper-slide {
width: 175px;
height: 210px;
border-radius: 2rem;
font-weight: bold;
}
}