-
Notifications
You must be signed in to change notification settings - Fork 0
/
achievement.css
81 lines (71 loc) · 1.35 KB
/
achievement.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
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
background-color:#080808;
scroll-behavior:smooth;
}
/* width */
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background: #262626;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #ff004f;
border-radius: 5px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* navigation */
.navbar{
background-color:#020200;
}
.nav-item:hover{
color: #ff004f;
}
.main-sec h1 span{
transition: 0.5s;
font-size: 2.5rem;
margin: 0 2px;
}
.main-sec h1 span:hover{
color: #ff004f;
font-size: 1.5rem;
transform: translateY(-6px);
}
.school-img-container{
width: 50%;
}
.school-text-container{
width: 50%;
margin: 0 1rem;
}
footer{
background-color: #262626;
}
/* media query */
@media only screen and (max-width: 768px) {
/* For mobile phones: */
.schools{
flex-direction: column;
width: 100%;
margin: 1rem 0;
}
.schools div{
width: 100%;
}
.school-text-container{
margin: 10px 0;
}
.school-img-container{
margin: 10px 0;
}
}