-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (88 loc) Β· 1.79 KB
/
style.css
File metadata and controls
113 lines (88 loc) Β· 1.79 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
/* Made with code and care in Paris by Codingk8 - 2019 - Twitter: @codingk8 */
/*
From Google fonts:
font-family: 'Laila', serif;
*/
:root {
font-size: 15px;
}
#container {
height: 100vh;
padding-bottom: 12.5%;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
font-family: 'Laila', serif;
font-size: 1.5rem;
color: white;
--light: #ebd5d5;
--dark: #ceb6b6;
/* background-color: var(--light); */
background-image: url("assets/images/adrian-pelletier-608345-unsplash.jpg");
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
h1, h2 {
font-size: 1.6rem;
}
#article1 {
text-align: center;
}
#construction {
padding: 2% 2% 2% 2%;
border: solid 2px;
border-radius: 50px;
}
#meantime {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
#find {
margin-right: 15px;
font-size: 3rem;
}
.smicon {
font-size: 4rem;
color: white;
margin-right: 10px;
margin-left: 10px;
}
.smicon:hover {
opacity: 0.5;
transform: translateY(-5px);
}
footer {
/* width: 80%; */
/* border-radius: 50px; */
/* text-align: center;
padding: 2% 0 1% 0; */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: rgba(255, 255, 255, 0.5);
color: white;
font-size: 1.1rem;
position: fixed;
bottom: 0;
left: 0;
width: 100vw;
height: 15%;
}
footer p {
margin: 0 0 0 0;
}
footer .link {
color: var(--light);
text-decoration-style: solid;
text-decoration: underline;
}
footer .link:hover {
color: var(--light);
text-decoration: none;
}