-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.css
More file actions
61 lines (55 loc) · 1015 Bytes
/
Copy pathproject.css
File metadata and controls
61 lines (55 loc) · 1015 Bytes
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
*{
padding: 0;
margin: 0;
}
.proj_parent, .proj, .title, .description{
display: flex;
justify-content: center;
align-items: center;
font-family: 'Montserrat', 'sans-serif';
}
.proj{
flex-direction: column;
max-width: 90vw;
min-width: 50vw;
border-left: 0.1vh solid #404046;
border-right: 0.1vh solid #404046;
padding: 3vh;
}
.title{
margin: 2vh;
min-height: 10vh;
background-color: #404046;
width: 100%;
font-size: 2vh;
color: white;
}
.description{
align-items: flex-start;
justify-content: flex-start;
padding: 4vh;
min-height: 30vh;
width: 100%;
font-size: 3vh;
}
.image img{
padding: 2vh;
max-width: 600px;
max-height: 400px;
}
pre{
background: #f4f4f4;
border: 1px solid #ddd;
border-left: 3px solid #f2334c;
color: #666;
page-break-inside: avoid;
font-family: monospace;
font-size: 15px;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1em 1.5em;
display: block;
word-wrap: break-word;
}