-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
130 lines (100 loc) · 2.04 KB
/
Copy pathstyle.css
File metadata and controls
130 lines (100 loc) · 2.04 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
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
body {
width: 100%;
margin: 0;
padding: 0;
text-transform: capitalize;
background-color: rgb(60, 64, 198);
}
nav {
background-color: rgb(60, 64, 198) !important;
}
nav a {
color: rgb(255, 255, 255) !important;
}
nav a:hover {
border-bottom: 2px solid rgb(255, 255, 255) !important;
}
.container-fluid>a {
font-size: 30px !important;
font-weight: bolder;
}
#right-sight>a {
font-size: 18px !important;
font-weight: bold !important;
}
#right-sight span {
background-color: red;
padding: 2px 5px;
border-radius: 10px;
}
/* navbar section complete */
/* *********************** */
/* second section started */
.second-section {
width: 98%;
height: 100vh;
/* border: 1px solid black; */
display: flex;
flex-direction: column;
justify-content: space-around;
margin: 0 auto;
}
.card-list {
display: flex;
justify-content: space-evenly;
align-items: center;
flex-wrap: wrap;
}
.card-list a {
text-decoration: none;
color: black;
font-weight: bolder;
}
.card-list a:hover{
text-decoration: underline;
color: rgb(0, 26, 255);
}
/* @media Quarry section */
@media only screen and (max-width: 752px) {
#right-sight {
display: none !important;
}
}
@media only screen and (max-width: 576px) {
.second-section{
width: 120vw;
height: 250vh;
}
#FLATE-UI-COLOUR{
font-size: 25px !important;
}
.card-list{
width: 100%;
flex-direction: column;
}
.card{
width: 95% !important;
}
}
@media only screen and (max-width: 320px) {
#FLATE-UI-COLOUR{
font-size: 18px !important;
}
}
@media only screen and (max-width: 215px) {
.second-section{
width: 150vw;
height: 250vh;
}
#FLATE-UI-COLOUR{
font-size: 13px !important;
}
.card-list{
width: 100%;
flex-direction: column;
justify-content: space-around;
}
.card{
width: 95% !important;
}
}