-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (59 loc) · 900 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
71
72
73
74
75
76
77
/*
-----Table of contents-----
1. DIV ATTRIBUTES
2. FONTS & TEXT
3. ANCHORS
*/
body {
font-family: 'Open Sans', sans-serif;
position: relative;
background-image: url('./imgs/asfalt--light--1920x1080.png');
background-color: grey;
color: whitesmoke
}
/****
1. DIV ATTRIBUTES
****/
.fullheight {
height: 100vh;
}
.col-ninetyheight {
height: 88vh;
}
.flex-item {
width: 200px;
height: 200px;
text-align: center;
margin: 5px
}
.section-block {
display: inline-flex;
}
.section-image {
width: 100%;
}
#title-name {
padding-bottom: 3%;
}
/****
2. FONTS & TEXT
****/
.name {
font-family: 'Shrikhand', cursive;
}
.sub-header {
font-family: 'Open Sans', sans-serif;
}
/****
3. ANCHORS
****/
a.main-anchor {
text-decoration: none;
color: inherit;
}
a.main-anchor:hover {
color: silver;
}
.white {
color: white;
}