-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
96 lines (78 loc) · 1.42 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Oswald', sans-serif;
font-size: 20px;
}
body, section {
background-color: #fff59d;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h2 {
font-size: 1.5rem;
}
.nav-links {
background-color: #1b3039;
display: flex;
justify-content: space-around;
align-items: center;
height: 85px;
padding: 5px 10%;
position: fixed;
top: 0;
left: 0;
right: 0;
}
html {
scroll-behavior: smooth;
}
section[id] {
scroll-margin-top: 85px;
}
section {
margin-top: 1rem;
width: 70%;
}
#matriz2x2 {
margin-top: 5rem;
}
.nav-links {
list-style: none;
}
.nav-links li{
display: inline-block;
padding: 0 20px;
}
.nav-links li:hover {
transform: scale(1.1);
}
.nav-links a {
font-size: 700;
color: #eceff1;
text-decoration: none;
}
.nav-links li a:hover{
color: #ffbc0e;
}
.btn button{
font-weight: 700;
color: #1b3039;
padding: 9px 25px;
background: #eceff1;
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease 0s;
}
.boton {
margin: 1em;
padding: .75em;
}
.limpiar {
display: none;
}