-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (78 loc) · 1.22 KB
/
style.css
File metadata and controls
93 lines (78 loc) · 1.22 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
/* CSS Styles */
/* reset browser styles*/
html {
box-sizing: inherit;
font-size: 16px;
}
*,
*:before,
*:after {
box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
margin: 0;
padding: 0;
font-weight: normal;
}
ol,
ul {
list-style: none;
}
img {
height: auto;
margin-right: 20px;
}
/* page */
body {
width: 100vw;
}
main {
min-width: 350px;
height: 100vh;
margin: 0 auto;
}
/* content */
header {
width: 100vw;
padding: 30px;
border-bottom: 1px solid rgba(128, 128, 128, 0.267);
display: flex;
align-items: center;
}
h1 {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
margin-bottom: 10px;
font-size: 2.5rem;
font-weight: 600;
}
p {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.boxContainer {
padding: 40px;
height: 100%;
display: grid;
grid-template-columns: repeat(4, 20%);
grid-template-rows: repeat(5, 15%);
gap: 2%;
justify-content: center;
}
button {
border-radius: 10px;
cursor: pointer;
}
a {
font-size: 1.3rem;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-decoration: none;
color: black;
}