-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (98 loc) · 1.83 KB
/
style.css
File metadata and controls
118 lines (98 loc) · 1.83 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
114
115
116
117
118
body{
display: flex;
flex-direction: column;
padding: 0px;
margin: 0px;
background: linear-gradient(#363441, #41447A);
background-attachment: fixed;
color: white;
font-family: 'system-ui', sans-serif;
scroll-behavior: smooth;
min-height: 100vh;
background-repeat: no-repeat;
}
nav{
background-color: #3B3642;
position: sticky;
top: 0;
box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
text-decoration: none;
padding-left: 10px;
font-size: 1.2em;
font-weight: bold;
display: flex;
flex-direction: row;
justify-content: space-around;
z-index: 1000;
}
nav a{
text-decoration: none;
color: white;
}
.light {
background: linear-gradient(#F7E0AB 0%, #E08075 90%, #DC727B 100%);
color: black;
}
.light nav, .light footer, .light nav a{
background-color: #FDD9AE;
color: black;
}
.links{
display: flex;
flex-direction: row;
align-items: center;
margin-right: 20px;
font-weight: normal;
}
.links a, .links button {
margin-left: 20px;
font-size:0.9em;
}
.nav-icon{
width: 50px;
height: 50px;
padding: 10px;
}
.page{
margin: 20px;
padding: 10px;
flex: 1;
}
footer {
display: flex;
align-items: center;
box-shadow: 0 -4px 2px rgba(0, 0, 0, 0.1);
justify-content: space-between;
/*background-color: #FDD9AE;*/
background-color: #3B3642;
bottom: 0;
}
footer p{
padding-left: 15px;
padding-right: 15px;
}
.light a{
text-decoration: none;
color: black;
}
a{
text-decoration: none;
color: white;
}
#row1 img, #row2 img, #row3 img, #row4 img, #row5 img{
height: 75px;
}
.posts div{
background-color: #7468a3;
color: white;
display: flex;
justify-content: space-between;
margin: 20px;
}
.light .posts div{
background-color: #a695e9;
}
.posts div p{
padding-left: 15px;
padding-right: 15px;
}