forked from COLTEC-DAW/E02-CSS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
134 lines (119 loc) · 2.32 KB
/
style.css
File metadata and controls
134 lines (119 loc) · 2.32 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
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
126
127
128
129
130
131
132
133
/*PARTE I*/
/*geral pra página inteira (html)*/
body{
font-family: 'Work Sans', 'Lucida Sans', sans-serif;
font-size: 1rem;
/*width: 80%;
max-width: 1280px;*/
background-color: #0A1926;
color: #ffffff;
text-align: center;
text-indent: 2rem;
margin: auto;
}
/* Títulos */
h1,h2,h3{
text-align: center;
}
h1 { font-size: 1.8rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.2rem; }
/* Seções de resumo e principal */
.summary{
line-height: 1.5rem;
text-align: center;
margin-top: 6px;
background-color: #1F2D38;
}
/* Links e abreviaturas */
abbr, a{
color: #929CA6;
font-weight: 700;
text-decoration: none;
padding-top: 1%;
}
/*PARTE II*/
/*Rodapé*/
footer{
display: block;
width: 100%;
position: fixed;
bottom: 0;
left: 0;
background-color: #e3e9ee;
height: 45px;
padding: 1%;
}
footer a{
display:inline-block;
margin-left: 1%;
margin-right: 1%;
}
/* conteudo principal*/
#main_content{
/*width: 60%;
float: left;
margin-left: 40px;*/
line-height: 1.5;
text-align: center;
padding-right: 0.6rem ;
}
/*Paineis Laterais*/
.sidebar{
/*margin-top: 200px;/
float: left;
width: 33%;*/
padding-left: 10px;
padding-right: 10px;
line-height: 1em;
background-color: #1F2D38;
text-align: left;
}
.sidebar ul{
list-style:none;
text-indent: 1em;
}
.sidebar ul:last-child{
padding-bottom: 30px;
border-bottom: 2px solid #e3e9ee;
}
.sidebar h3{
text-align: center;
}
/* Mais mudanças na tipografia */
/*Links*/
a:hover{
text-decoration: underline;
color: #929CA6;
}
a:visited { color: #ffffff; }
.design-selection a:link { block-size: auto; }
.design-selection a:link::before{
content: "\00A9";
font-size: 0.8em;
text-align: block;
}
/*Parágrafos*/
p::first-letter{
font-size: 2em;
font-weight: 900;
border-top: #ffffff 0.5px solid;
border-bottom: #ffffff 0.5px solid;
}
/* Personalização adicionais aparência*/
header{
background-color: #1F2D38;
margin-top: 6px;
border-right: 5px solid #0A1926;
/*width: 100%;
left: 0;
float: left;
position: absolute;*/
}
.requirements{
margin-bottom: 80px;
}
.preamble{
border: 1px solid #313c47;
margin: 1rem 0rem 1rem 0rem;
}