-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
117 lines (97 loc) · 1.45 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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
display: flex;
min-height: 100vh;
align-items: center;
justify-content: center;
width: 100%;
margin: 0;
padding: 0;
}
.orga, .projects {
display: flex;
min-height: 100vh;
width: 50%;
margin: 0;
padding: 0;
flex-direction: column;
}
.orga {
background: #2B3542;
color: #fff;
align-items: center;
justify-content: center;
}
.subtitle {
font-size: 1.3em;
}
img.logo {
max-height: 25vh;
}
.dev a,
.dev a:visited,
.dev a:hover {
text-decoration: none;
color: #FFF;
}
.devs {
display: flex;
margin-top: 30px;
}
.dev {
margin: 0 20px;
text-align: center;
}
.dev .face img {
border-radius: 50%;
width: 10vw;
}
.dev .fullname {
color: #AAA;
}
.copyright {
font-size: 0.8em;
position: absolute;
bottom: 20px;
}
.icon {
color: #ec407a;
}
.projects {
background: #353f4c;
overflow-y: scroll;
height: 100vh;
}
.project {
background: #3f4956;
border-bottom: 1px solid #353f4c;
}
.project a,
.project a:visited,
.project a:hover {
text-decoration: none;
color: #DDD;
}
.project a .content {
padding: 20px;
}
@media screen and (max-width: 1000px)
{
body {
flex-direction: column;
}
.orga, .projects {
width: 100%;
min-height: 50vh;
}
.orga {
padding-bottom: 20px;
}
.projects {
overflow: initial;
}
.copyright {
position: relative;
bottom: initial;
}
}