-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (83 loc) · 1.17 KB
/
Copy pathstyle.css
File metadata and controls
93 lines (83 loc) · 1.17 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
/* -----Global-----*/
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
font-family: "Lato", sans-serif;
color: #333;
line-height: 1.6;
}
ul {
list-style-type: none;
}
a {
text-decoration: none;
color: #333;
}
h1,
h2 {
font-weight: 300;
line-height: 1.2;
margin: 10px 0;
}
p {
margin: 10px 0;
}
img {
width: 100%; /*images have to be with a width of container*/
}
/*-----HEADER----*/
.navbar {
background-color: #047aed;
color: azure;
height: 70px;
}
.navbar ul {
display: flex;
}
.navbar a {
color: azure;
padding: 10px;
margin: 0 5px;
}
.navbar a:hover {
border-bottom: 2px #fff solid;
}
.navbar .flex {
justify-content: space-between;
}
/* Stats */
.stats {
padding-top: 100px;
}
/* Utilities */
.container {
max-width: 1100px;
margin: 0 auto;
overflow: auto; /* in the center*/
padding: 0 40px;
}
.flex {
display: flex;
justify-content: space-between;
align-items: center;
height: 100%;
}
/* Stats */
.stats {
padding-top: 100px;
}
.stats-heading {
max-width: 500px;
margin: auto;
}
.stats .grid h3 {
}
font-size: 35px;
.stats .grid p {
font-size: 20px;
font-weight: bold;
}
/* -----Main Screen-----*/