-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
135 lines (133 loc) · 2.07 KB
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
body {
overflow-x: hidden;
}
.container {
width: 100%;
padding: 20px 20px;
}
.navbar {
width: 100%;
display: flex;
justify-content: center;
padding: 20px 50px;
}
.logo {
width: 50%;
display: flex;
justify-content: start;
cursor: crosshair;
}
.logo h2 {
letter-spacing: 3px;
font-weight: 800;
font-size: 34px;
}
.logo h2:hover {
text-decoration: underline;
}
.bmc {
width: 50%;
display: flex;
justify-content: end;
}
.lists {
margin: auto;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
margin: 80px 0px 20px 40px;
}
.app {
width: 250px;
height: 250px;
text-align: center;
}
.app img {
width: 200px;
height: 200px;
}
.app img:hover {
opacity: 0.8;
}
.app h6 {
font-size: 14px;
letter-spacing: 2px;
text-decoration: none;
color: #131313;
}
.app h6:hover {
letter-spacing: 3px;
}
.app a {
text-decoration: none;
}
.bmc-img {
height: 60px !important;
width: 217px !important;
}
footer {
margin-top: 90px;
display: flex;
justify-content: center;
color: #131313;
letter-spacing: 2px;
}
footer p {
padding-top: 1rem;
padding-left: 1rem;
}
@media screen and (max-width: 1100px) {
.lists {
grid-template-columns: 1fr 1fr 1fr;
}
}
@media screen and (max-width: 840px) {
.lists {
margin: 80px 0px 20px 0px;
}
}
@media screen and (max-width: 600px) {
body {
overflow-x: hidden;
}
.container {
overflow-x: hidden;
width: 90%;
padding: 10px 10px;
}
.navbar {
padding: 10px 15px;
}
.logo {
justify-content: start;
}
.logo h2 {
margin-top: 15px;
font-size: 24px;
}
.bmc {
justify-content: end;
}
.bmc-img {
height: 50px !important;
width: 180px !important;
}
.lists {
grid-template-columns: 1fr 1fr;
margin: 80px 0px 20px 20px;
}
.app {
width: 200px;
height: 200px;
}
.app img {
width: 150px;
height: 150px;
}
}