forked from acs-pwr/Project-A25
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
135 lines (112 loc) · 2.25 KB
/
stylesheet.css
File metadata and controls
135 lines (112 loc) · 2.25 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
* {
box-sizing: border-box;
}
/* Style the body */
body {
font-family: Arial;
margin: 0;
}
a {
text-decoration: none;
}
/* Header/logo Title */
.header {
padding: 20px 0 0 0;
text-align: center;
background-color: black;
}
.gradient-text {
font-size: 70px;
font-family: "Archivo Black", sans-serif;
background-color: red;
background-image: linear-gradient(45deg, #f3ec78, #af4261);
background-size: 100%;
background-repeat: repeat;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
/* Style the top navigation bar */
.navbar {
display: flex;
}
/* Style the navigation bar links */
.navbar a {
color: white;
padding: 14px 20px;
text-decoration: none;
text-align: center;
font-family: "Archivo Black", sans-serif;
}
/* Change color on hover */
.navbar a:hover {
background-color: #ddd;
color: black;
}
/* Column container */
.row {
display: flex;
flex-wrap: wrap;
}
/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
flex: 30%;
background-color: #f1f1f1;
padding: 20px;
}
/* Main column */
.main {
flex: 70%;
background-color: white;
padding: 20px;
}
/* Fake image, just for this example */
.fakeimg {
background-color: #aaa;
width: 100%;
padding: 20px;
}
/* Footer */
.footer {
height: 130px;
padding: 20px;
background-image: url(./langit.jpg);
background-size: cover;
}
.footer-logo {
float: left;
color: white;
font-size: 25px;
}
.logo-item {
text-decoration: underline;
text-decoration-color: #eb780d;
}
.logo-item:hover {
color: #ff8b1f;
text-decoration: none;
font-style: italic;
}
.footer-list {
float: right;
}
.footer-list li {
padding-bottom: 6px;
list-style-type: none;
}
.footer-list li a {
color: white;
}
.li-item:hover a {
color: #ff8b1f;
font-style: italic;
}
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
.row,
.navbar {
flex-direction: column;
}
}