-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (70 loc) · 1.16 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
/* styles.css */
body {
font-family: Arial, sans-serif;
}
.screen {
padding: 20px;
}
header nav {
display: flex;
justify-content: space-between;
background-color: #f4f4f4;
padding: 10px;
border-bottom: 1px solid #ddd;
}
header nav div a {
margin: 0 10px;
text-decoration: none;
color: #333;
}
.perfil {
display: flex;
margin: 20px 0;
}
.perfil img {
width: 150px;
height: 150px;
border-radius: 50%;
margin-right: 20px;
}
.perfil .info {
max-width: 600px;
}
.repositorios {
margin: 20px 0;
}
.repositorio {
display: flex;
justify-content: space-between;
background-color: #f9f9f9;
padding: 10px;
border: 1px solid #ddd;
margin-bottom: 10px;
cursor: pointer;
}
.conteudo-sugerido, .colegas {
margin: 20px 0;
}
.colega {
display: inline-block;
margin-right: 10px;
text-align: center;
}
.colega img {
width: 50px;
height: 50px;
border-radius: 50%;
}
.detalhe {
margin: 20px 0;
}
.detalhe .topicos span {
background-color: #007bff;
color: #fff;
padding: 5px;
border-radius: 3px;
margin-right: 5px;
}
.hidden {
display: none;
}