-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbadges.css
120 lines (112 loc) · 2.49 KB
/
badges.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
body {
/* background-image: url(./assets/3D.jpg); */
background-color: #303948;
background-position: center top;
/* filter: blur(8px); */
background-repeat: no-repeat;
background-size: cover;
color: white;
font-family: "Tapestry";
font-size: large;
justify-content: center;
}
/* body back */
.container {
width: 100%;
height: max-content;
margin: 0 auto;
padding: 0 auto;
}
.header {
display: flex;
/* flex-wrap: wrap; */
box-sizing: border-box;
margin: 0 auto;
padding: 0 auto;
width: 100%;
text-decoration: none;
background-color: rgb(24, 39, 39);
/* height: 70px; */
}
.container .header .navbar {
width: 100%;
margin: auto;
padding: auto;
}
.container .header .navbar ul {
display: flex;
list-style: none;
justify-content: space-evenly;
}
.container .header .navbar ul li:hover {
text-shadow: 0 0 3px #ff0000, 0 0 5px #00ffff;
}
/* button{
color: none;
} */
a {
text-decoration: none;
}
.container .header li .nav-item:hover {
text-shadow: 0 0 3px #ff0000, 0 0 5px #00ffff;
}
li .nav-item,
a {
width: max-content;
color: white;
display: flex;
margin: auto;
justify-content: space-between;
}
.container .header .nav-logo {
width: 5em;
box-shadow: none;
/* margin: auto; */
padding: 0;
height: 13vh;
}
.badges{
width: 80%;
padding: auto;
padding-left: 5rem;
}
.badge1,.badge2,.badge3,.badge4{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
/* Navbar Responsive */
@media screen and (max-width:685px) {
.header{
width: 100%;
}
.container .header .navbar ul {
display: flex;
justify-content: space-around;
}
.navbar-nav li{
width: max-content;
font-size: 0.85rem;
}
}
@media screen and (max-width:750px) {
.badge1,.badge3{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.badge2,.badge4{
display: flex;
flex-direction: column-reverse;
justify-content: center;
align-items: center;
}
}
@media screen and (max-width:900px) {
.badge1 img,.badge2 img,.badge3 img,.badge4 img{
height: 20rem;
width: 20rem;
}
}