-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (60 loc) · 999 Bytes
/
style.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
/*!
Theme Name: esbuild-starter
Author: Nikola - WebRedone
Author URI: https://webredone.com
Description: EsBuild starter configuration for the modern workflow
*/
* {
box-sizing: border-box;
}
* {
margin: 0;
padding: 0;
font-family: arial;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.header,
.footer {
background-color: #e6f3fb;
color: #222;
padding: 20px 30px;
margin-bottom: 50px;
}
.main-content {
padding: 30px;
flex: 1;
}
.footer {
margin-bottom: 0;
margin-top: 50px;
}
p {
font-size: 24px;
}
.root > div {
display: inline-flex;
margin-right: 30px;
border: 4px solid #222;
padding: 30px;
border-radius: 8px;
width: 300px;
margin-bottom: 30px;
}
.root h2 {
font-weight: 700;
margin-bottom: 20px;
color: #222;
}
.root button {
background-color: #222;
color: #fff;
border-radius: 4px;
padding: 10px 20px;
font-size: 20px;
cursor: pointer;
}
/*# sourceMappingURL=dist/css-maps/style.css.map */