trabalho-html-saspi

ref: master

./estilo.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
126
127
128
129
130
131
132
133
134
135
body {
	font-family: Arial, sans-serif;
	color: white;
	background-color: #01204E;
}

.container {
	margin: 0 auto;
	padding: 0 20px;
	width: 70%;
	max-width: 800px;
}

#entrar {
	padding: 10px 20px;
	background-color: #40A578;
	font-weight: bold;
	color: white;
	font-size: 26px;
	text-decoration: none;
}

.mb-30 {
	margin-bottom: 30px;
}

.logo {
	font-size: 50px;
	text-align: center;
	color: #40A578;
}

nav {
	display: flex;
	flex-direction: column;
}

nav a {
	font-size: 20px;
	color: white;
	text-decoration: none;
	margin-bottom: 10px;
}

nav a:hover {
	color: #40A578;
}

.bloco {
	border-radius: 10px;
	background-color: #40A578;
	padding: 20px;
}

.bloco img {
	width: 200px;
	margin-right: 20px;
}

.voltar {
	margin-top: 20px;
}

.voltar a {
	font-size: 20px;
	color: #40A578;
	text-decoration: none;
}

.flex-column {
	flex-direction: column;
}

.flex-row {
	flex-direction: row;
}

.flex {
	display: flex;
}

.items-center {
	align-items: center;
}

.text-center {
	text-align: center;
}

.mt-20 {
	margin-top: 20px;
}

.m-0 {
	margin: 0;
}

.justify-between {
	justify-content: space-between;
}

.patrocinios {
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.patrocinios img {
	height: 100px;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
}

th {
  border: 1px solid #ddd;
  padding: 8px;
}

tr:nth-child(even) {
	background-color: #395f99;
	color: white;
}

th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #40A578;
  color: white;
}