forked from hidcCombEx/SpedUp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathosl.css
132 lines (107 loc) · 1.83 KB
/
osl.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
#info {
display: flex;
justify-content: space-between;
margin: 120px 0 20px 0;
}
#project {
width: 60%;
}
#crew {
width: 120px;
height: 90px;
}
#project h1 {
font-size: 64pt;
}
#project p {
margin-top: 50px;
font-size: 1.2em;
line-height: 1.8em;
}
#link {
display: flex;
}
.button {
width: 200px;
height: 50px;
outline: 3px solid #565656;
display: flex;
justify-content: space-evenly;
align-items: center;
margin: 60px 20px 60px 0;
}
.button h3 {
font-family: "Montserrat";
font-weight: 600;
}
.button img {
width: 16px;
object-fit: scale-down;
}
#participants {
width: 32%;
font-family: "Montserrat";
margin-top: 20px;
}
#participants h2 {
font-size: 24pt;
}
#name {
max-height: 520px;
display: flex;
flex-direction: column;
flex-wrap: wrap;
margin-top: 30px;
}
#name p {
margin: 10px 30px 10px 0;
font-size: 18pt;
}
#archive {
margin-bottom: 120px;
}
#archive h3 {
font-family: "Montserrat";
font-size: 24pt;
text-align: center;
margin: 80px 0;
}
#images {
list-style: none;
column-count: 3;
}
#images img {
width: 100%;
object-fit: cover;
margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
#images {
column-count: 2;
}
#project {
width: 100%;
}
#project h1 {
font-size: 36pt;
}
#project p {
font-size: 12pt;
}
#participants {
width: 100%;
}
#archive h3 {
text-align: left;
margin-bottom: 40px;
}
#name {
height: 360px;
}
#name p {
font-size: 12pt;
}
#info {
display: block;
}
}