-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (57 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
@import url('https://fonts.googleapis.com/css2?family=Sen:[email protected]&display=swap');
body {
background: rgb(75,0,102);
background: radial-gradient(circle, rgb(22, 0, 29) 0%, rgb(0, 0, 0) 100%);
font-family: 'Sen';
color: #F4C032;
}
.header {
padding: 80px; /* some padding */
text-align: center; /* center the text */
background: #33333340; /* green background */
color: #F4c032; /* white text color */
}
/* Increase the font size of the <h1> element */
.header h1 {
font-size: 40px;
font-family:'Sen'
}
/* Ensure proper sizing */
* {
box-sizing: border-box;
}
/* Column container */
.row {
display: flex;
flex-wrap: wrap;
}
/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.about {
flex: 20%; /* Set the width of the sidebar */
background-color: #33333370; /* Grey background color */
padding: 20px; /* Some padding */
font-family:"Sen";
color: #F4c032
}
/* Main column */
.projects {
flex:70%; /* Set the width of the main content */
background-color: #33333370; /* White background color */
padding: 20px; /* Some padding */
font-family:"Sen";
color: #F4c032;
display: inline-block;
}
.footer {
flex:50%;
text-align: center; /* Center text*/
background-color: #33333340; /* White background color */
padding: 20px; /* Some padding */
font-family:"Sen";
color: #F4c032;
}
.impact, .hackclub, .ftc{
text-align: center;
display:inline-block;
}