-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle.css
107 lines (90 loc) · 1.41 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
body {
background-color: #101820;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 60px;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #7A8087;
padding: 10px;
margin-top: 0;
}
.Navegacion {
display: flex;
align-items: center;
justify-content: left;
background-color: #7A8087;
padding: 0px;
margin: 0px;
}
.logo-container {
display: flex;
align-items: left;
}
.logo {
width: 110px;
height: auto;
align-items: left;
z-index: left;
padding: 10px;
margin: 10px;
}
#navlist {
list-style: none;
display: flex;
}
.nav-item {
cursor: pointer;
padding: 10px;
margin: 0 10px;
color: #E8FF66;
font-family: "Helvetica Neue", sans-serif;
font-size: 18px;
}
.card {
width: 100%;
margin: 10px 0;
background-color: #7A8087;
}
.card-title {
font-size: 18px;
color: #e2e2e2;
}
p.card-text {
font-size: 12px;
color: #e2e2e2;
}
.page-link {
background-color: transparent;
color: #E8FF66;
}
footer {
display: flex;
background-color: #1b232c;
color: #E8FF66;
font-family: "Helvetica Neue", sans-serif;
font-size: 14px;
padding: 5px;
margin: 0px;
}
@media only screen and (max-width: 600px) {
header {
padding: 5px;
}
.container {
padding: 20px;
}
.nav-item {
font-size: 14px;
}
.card {
width: 100%;
margin: 10px 0;
}
}