-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisual.css
70 lines (53 loc) · 1.01 KB
/
visual.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
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: white;
background-color: #262626;
}
/* Main container */
.main_container {
width: 85%;
margin: auto;
}
/* Service Header */
.service-header {
width: 80%;
margin: auto;
margin-bottom: 50px;
}
.service-header h2 {
font-size: 3em;
font-weight: 700;
text-align: center;
}
.paletteOrange {
color: #F24405;
}
/* Service body */
.service-body {
display: flex;
flex-direction: row;
}
.centered-element {
margin: 10px;
padding: 10px;
}
.centered-element img {
width: 100px;
margin: auto;
/* filter: invert(); */
/* -webkit-filter: invert(); */
}
.centered-element h3 {
text-align: center;
}
/* Responsive */
@media screen and (max-width:750px) {
.service-body {
flex-wrap: wrap;
}
.main_container {
text-align: justify;
}
}