-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
121 lines (105 loc) · 2 KB
/
main.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
117
118
119
120
121
@import url("asset/S-Core-Dream-light/s-core-dream.css");
html,
body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
div,
input {
font-family: "s-core-dream-light", "Monserrat", sans-serif;
}
footer {
background-color: var(--perrywinkle);
height: 120px;
box-shadow: 0 -2px 4px 0 var(--dark-gray);
z-index: 100;
margin-top: 1px;
}
ul,
li {
margin: 0;
padding: 0;
list-style: none;
}
#navbar {
padding-top: 15px;
padding-bottom: 15px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
z-index: 0;
position: relative;
}
#wallpaper {
margin: 1px auto;
width: 100%;
height: 710px;
background-repeat: no-repeat;
background-position: 0 0;
background-size: 100% 100%;
}
:root {
--perrywinkle: #9d8ae0;
--pale-salmon: #feb6ae;
--light-peach: #febead;
--white: #ffffff;
--black: #000000;
--light-black: #545454;
--dark-gray: #999999;
--gray: #bbbbbb;
--light-gray: #f7f7f7;
--pale-purple: #f6f3ff;
--light-purple: #E5D9FD;
--dark-purple: #573cbb;
--deep-dark-purple: #332563;
}
/* layout css */
.layout-horizontal-space {
margin: auto;
width: 80%;
position: relative;
display: flex;
justify-content: space-between;
}
.layout-horizontal-center {
margin: auto;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.layout-vertical-center {
position: relative;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.layout-vertical-left {
position: relative;
display: flex;
justify-content: flex-start;
align-self: auto;
flex-direction: column;
}
.layout-vertical-right {
position: relative;
display: flex;
justify-content: flex-end;
align-content: flex-end;
align-items: flex-end;
align-self: flex-end;
flex-direction: column;
}
.layout-vertical-space {
position: relative;
height: 80%;
display: flex;
justify-content: space-between;
align-self: auto;
flex-direction: column;
}
.content__wallpaper {
margin-top: 50px;
margin-bottom: 75px;
}