-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstylesheet.css
107 lines (88 loc) · 1.97 KB
/
stylesheet.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
body {
background-color: #100f1c;
color: white;
}
@import url('https://fonts.googleapis.com/css?family=Montserrat');
@font-face {
font-family: 'Futura';
src: url('https://db.onlinewebfonts.com/t/038cce7b400a94325f0721bb7b603929.eot');
src: url('https://db.onlinewebfonts.com/t/038cce7b400a94325f0721bb7b603929.eot?#iefix') format('embedded-opentype'), url('https://db.onlinewebfonts.com/t/038cce7b400a94325f0721bb7b603929.woff2') format('woff2'), url('https://db.onlinewebfonts.com/t/038cce7b400a94325f0721bb7b603929.woff') format('woff'), url('https://db.onlinewebfonts.com/t/038cce7b400a94325f0721bb7b603929.ttf') format('truetype'), url('https://db.onlinewebfonts.com/t/038cce7b400a94325f0721bb7b603929.svg#Futura') format('svg');
font-style: normal;
font-weight: 400;
}
.pj-item {
color: '#d8cff';
text-decoration: none;
}
.pj-item:hover {
text-decoration: underline;
}
.accordion {
width: 80%;
margin: 2rem auto;
}
.serial {
color: white
}
@media(max-width:767px) {
html {
font-size: 14px;
}
}
.navbar-light .navbar-nav .nav-link {
color: rgb(177, 177, 177);
}
.navbar-light .navbar-nav .nav-link:hover {
color: rgb(255, 255, 255);
}
@media (max-width: 850px) {}
.cards {
display: flex;
flex-wrap: wrap;
flex-direction: row;
font-family: sans-serif;
text-align: center;
justify-content: space-around;
}
.card {
display: block;
align-items: center;
padding: 10px;
margin: 20px;
border-color: #575757;
color: #ffffff;
background-color: #3b3b3b;
border-radius: 10px;
}
.row .cards a {
padding: 10px 40px 10px 40px;
background: #6100ff;
border-radius: 10px;
width: 250px;
cursor: pointer;
outline: none;
border: none;
}
.row .cards a {
text-decoration: none;
color: #ffffff;
}
.row .cards a:hover {
background: #a14c4c;
transition-delay: 10ms;
transition-duration: 1s;
}
.row .cards h3 {
color: white;
}
.row .cards p {
color: #fff;
}
::-webkit-scrollbar {
visibility: hidden;
}
img {
display: block;
margin-right: auto;
margin-left: auto;
}