-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (105 loc) · 1.9 KB
/
style.css
File metadata and controls
126 lines (105 loc) · 1.9 KB
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
/* google fonts */
@import url('https://fonts.googleapis.com/css2?family=Inconsolata&family=Montserrat:wght@500&family=Space+Mono:wght@400;700&display=swap');
/*
font-family: 'Inconsolata', monospace;
font-family: 'Montserrat', sans-serif;
font-family: 'Space Mono', monospace;
*/
/* content
1- * = all elements
2- body
3- main (main one div)
4- h2
5- container (img and text)
6- scarecrow (img div)
7- text-container
8- h1 (bad news)
9- para (2nd para)
10- button
~ button link
11- footer
~ footer link
~ a
*/
* {
margin: 0;
}
body {
width: 1440px;
margin: 0 auto;
}
.main {
width: auto;
height: auto;
}
h2 {
font-family: 'Inconsolata', monospace;
font-weight: 700;
font-size: 24px;
margin: 20px 0px 20px 50px;
}
.container {
margin: 120px 0px 0px 30px;
display: flex;
justify-content: space-between;
align-items: center;
}
.scarecrow {
display: flex;
align-content: flex-start;
Width: 539px;
Height: 447px;
margin-right: 50px;
}
.text-container {
font-family: 'Space Mono', monospace;
}
h1 {
font-family: 'Space Mono', monospace;
font-weight: 700;
font-size: 64px;
margin-bottom: 30px;
width: 80%;
}
.para {
font-family: 'Space Mono', monospace;
font-weight: 400;
font-size: 25px;
margin-bottom: 30px;
width: 50%;
}
button {
background-color: rgba(0, 0, 0, 0.761);
justify-content: center;
font-family: 'Space Mono', monospace;
/* border: 0; */
padding: 20px 25px;
cursor: pointer;
margin-top: 20px;
}
.button-link {
color: white;
text-decoration: none;
font-weight: 700;
font-size: 20px;
}
footer {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
position: fixed;
bottom: 0;
margin: 10px 0px 20px 0px;
color: #bdbdbd;
}
.footer-link {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
color: #bdbdbd;
}
a {
text-decoration: none;
color: #bdbdbd;
cursor: pointer;
}