-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (107 loc) · 1.85 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
body {
background-color: #252124;
max-width: 600px;
color: whitesmoke;
margin: auto;
}
p {
margin: 0;
}
hr {
box-sizing: border-box;
max-width: 50%;
padding:0 40%;
margin: 10px auto 20px;
border: 1px solid gray;
border-radius: 30px;
}
a:link, a:visited, a:active {
color: whitesmoke;
text-decoration: none;
}
a:hover {
color: white;
text-decoration: underline;
}
header {
width: 100%;
display: flex;
box-sizing: border-box;
justify-content: space-between;
align-items: center;
padding: 20px 10px;
margin: auto;
flex-wrap: nowrap;
}
#titulo_principal {
display: flex;
justify-content: flex-start;
max-width: 350px;
min-width: 25%;
max-width: 600px;
font-family: Arial, Helvetica, sans-serif;
flex-wrap: nowrap;
align-items: center;
}
#meu_nome {
margin-left: 10px;
}
main {
display: flex;
max-width: 500px;
width: 80%;
flex-direction: column;
align-items: center;
margin: auto;
}
main>p {
align-self: baseline;
}
section {
background-color: #353535;
box-sizing: border-box;
display: flex;
align-items: center;
width: 95%;
border-radius: 20px;
margin: 10px 10px;
padding: 7px 15px 14px 15px;
}
section h1 {
flex-basis: auto;
min-width: 25%;
flex-grow: 1;
font-size: 1.2em;
margin: 0 0 1% 0;
}
section p {
flex-grow: 2;
padding: 0px 1.2em;
margin: 0.3em 0.1em 0.4em 0.1em;
}
section ul {
flex-grow: 2;
margin: 0;
}
section li {
margin: 0.3em 0.1em 0.4em 0.1em;
}
aside {
background:black;
}
footer {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-end;
width: 100%;
}
.contatos {
padding: 0 20%;
width: 33%;
}
.versao {
width: 33%;
text-align: end;
font-size: 0.6em;
}