-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (110 loc) · 1.61 KB
/
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
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
114
115
116
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #eee;
}
body {
background: url(https://images.pexels.com/photos/1703314/pexels-photo-1703314.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
background-repeat: no-repeat;
background-size: cover;
background-color: #ccc;
}
h1 {
font-size: 2em;
padding: 5px;
width: fit-content;
}
h2 {
font-size: 1.5em;
}
header, footer {
width: 100vw;
background: #333;
}
header {
position: sticky;
top: 0;
}
footer {
bottom: 0;
}
section {
background: black;
box-shadow: 0 0 10px 5px black;
margin: 5%;
padding: 5%;
height: 50vh;
}
ul {
list-style: none;
font-weight: bold;
}
header a, footer a {
text-decoration: none;
color: white;
}
p {
padding: 5px;
}
.navbar {
padding: 5px;
}
.navbar-list {
display: flex;
justify-content: space-around;
}
.socials {
display: flex;
justify-content: space-around;
width: 80%;
margin: auto;
padding: 1vw;
}
.socials a {
font-size: 2em;
border-radius: 10px;
color: white;
text-align: center;
vertical-align: middle;
transition: .2s all;
padding: 5px;
}
.socials a:hover {
color: var(--color);
background: white;
}
.social-name {
display: none;
}
.fa-envelope {
--color: #333;
}
.fa-github {
--color: #304880;
}
.fa-facebook {
--color: #3B5998;
}
.fa-twitter {
--color: #55ACEE;
}
.fa-google {
--color: #dd4b39;
}
.fa-linkedin {
--color: #007bb5;
}
.fa-youtube {
--color: #bb0000;
}
.fa-instagram {
--color: #125688;
}
.fa-pinterest {
--color: #cb2027;
}
.fa-reddit {
--color: #ff5700;
}