-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (52 loc) · 1.05 KB
/
style.css
File metadata and controls
53 lines (52 loc) · 1.05 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
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');
*{
padding: 0;
margin: 0;
}
body{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.contenedor-fluido{
padding: 20px;
text-align: center;
width: 100%;
background-color: beige;
}
.contenedor{
text-align: center;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
.minicontenedor{
background-color: whitesmoke;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
border: 1px solid grey;
padding: 20px;
margin: 20px;
justify-content: center;
}
.minicontenedor2{
margin: 20px;
background-color:whitesmoke;
border: 1px solid gray;
width: 70%;
padding: 20px;
text-align: justify;
}
.negrita{
font-weight: bold;
}
.centrado{
text-align: center;
}
.codigo{
font-family: 'Source Code Pro';
color: white;
border-radius: 10px;
padding: 20px;
background-color: #2b2b2b;
}