-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (52 loc) · 766 Bytes
/
Copy pathstyle.css
File metadata and controls
61 lines (52 loc) · 766 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
.body{
font-family: roboto,sans-serif;
}
.branding{
font-size: 17px;
}
.showcase{
background:url('bureau.jpg') no-repeat;
background-position: center;
height: 600px;
padding: 140px 100px;
color:#fff;
}
.showcase h1 {
font-size: 40px;
font-weight: 700;
text-transform: uppercase;
color:red;
}
.showcase hr {
width: 100px;
margin: auto;
border-width: 3px;
border-color: #f44336;
}
.showcase p {
font-size: 16px;
padding-bottom: 20px;
color:red;
}
.section {
padding: 40px 0;
}
.section h2{
padding:0;
margin: 0;
}
.section .fa{
font-size: 50px;
}
@media only screen and (max-width:600px){
body{
margin-top:190px;
}
.showcase{
height: 400px;
padding: 60px 0;
}
}
.section img{
width: 100%.
}