-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
166 lines (159 loc) · 2.95 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
.logo{
height: 40px;
width: 60px;
}
html{
scroll-behavior: smooth;
}
::-webkit-scrollbar{
width: 10px;
background-color: #2a5a6d;
}
::-webkit-scrollbar-thumb{
background-color: #dce4e7;
}
.navbar{
background-color: #862e7f;
padding: 1rem 10rem;
color: #212121;
font-size: 1.2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.navRight{
display: flex;
justify-content: space-between;
width: auto;
align-items: baseline;
}
.navbar h1{
cursor: pointer;
margin-left: 80px;
margin-top: -40px;
}
.navbar span{
color: #f6f6f6;
}
.cards-container{
padding: 5rem;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
}
.card{
padding: 0.5rem;
border-radius: 4px;
box-shadow: 2px 2px 10px rgba(122, 6, 113, 0.5);
margin-bottom: 4rem;
}
.tags{
height: 0;
min-width: 50%;
max-width: 70%;
cursor: default;
position: relative;
top: -28px;
left: -8px;
border-bottom: 20px solid #250557;
box-shadow: 2px 2px 10px solid #708fb880;
border-left: 7.5px solid transparent;
border-right: 7.5px solid transparent;
display: flex;
justify-content: flex-start;
font-weight: 800;
align-items: baseline;
color: #ebe9f0;
}
.date{
/* background-color: red; */
padding: 2rem 0.5rem 0 0.5rem;
text-align: end;
font-weight: 600;
color: #454545;
}
.card img{
height: 175px ;
width: 330px;
border-radius: 4px;
}
.buttons{
display: flex;
flex-direction: column;
}
.btn , .btn2{
cursor: pointer;
border-radius: 4px;
margin-top: 10px;
padding: 15px 0px;
border: none;
background-color: #250557;
transition: 0.3s ease;
}
.btn:hover{
background-color: #dddadc;
}
.btn2:hover{
background-color:#fff
}
.btn:hover a , .btn2:hover a{
color: #24021c;
}
.btn a{
color: #d6dce0;
text-decoration: none;
font-size: 15px;
font-weight: 600;
padding: 15px 100px;
}
.btn2 a{
color: #d6dce0;
text-decoration: none;
font-size: 15px;
font-weight: 600;
padding: 15px 30px;
}
.project-name{
padding: 1rem;
font-size: 24px;
font-weight: 600;
}
footer{
color: #212121;
background-color: #862e7f;
padding: 1rem;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.1rem;
font-weight: 600;
}
footer span{
margin-left: 5px;
color: #f6f6f6;
}
@media screen and (max-width:650px) {
.navbar{
padding: 1rem 5rem;
}
}
@media screen and (max-width:500px) {
.navbar{
padding: 1rem 1rem;
align-items: baseline;
}
h1{
font-size: 1.2rem;
}
.navRight .btn2{
padding: 5px 10px;
}
}