generated from GarrettNutting/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
screen.css
82 lines (63 loc) · 1.12 KB
/
screen.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
/* Add screen styles below */
body {
background: #fff;
font-family: Helvetica, sans-serif;
border-top: 15px solid #424242;
margin: 0;
color: #424242;
}
main {
margin: 0 auto;
width: 800px;
}
.masthead {
background: no-repeat bottom / cover url('images/mac.jpg');
height: 250px;
border-radius: 20px;
}
.details {
display: flex;
gap: 25px;
}
.details section {
flex-grow: 1;
flex-basis: 0;
background: #E9EAEC;
border-radius: 20px;
margin-top: 25px;
}
.details section p {
margin: 20px;
}
.details section h2 {
margin: 20px
}
.details section.with-code {
padding: 0;
}
div.code-html {
padding:25px;
background: #424242;
color: #fff;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
img {
width: 100%;
}
h1 {
background-image: url('images/Logo.png');
background-repeat: no-repeat;
background-size: 40px;
background-position: center left;
font-size: 3em;
padding-left: 55px;
margin: 100px 0 25px 0;
}
h2 {
margin: 0 0 10px 0;
}
p {
margin: 0;
line-height: 1.4em;
}