-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
157 lines (139 loc) · 2.65 KB
/
about.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
@import url("https://fonts.googleapis.com/css?family=Indie+Flower|McLaren|Patrick+Hand&display=swap");
body {
height: 100%;
margin: 0;
overflow: auto;
}
* {
box-sizing: border-box;
}
.navbar,
.footer {
overflow: auto;
background-color: black;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
height: 100%;
}
.navbar h1 {
float: left;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 35px;
}
.navbar a {
float: right;
color: white;
text-align: center;
padding: 14px 25px;
text-decoration: none;
font-size: 20px;
margin: center;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
.navbar a.active {
background-color: grey;
color: white;
}
.home {
position: relative;
}
.home-text-content {
position: absolute;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
top: 0;
width: 100%;
height: 100%;
padding-left: 5%;
}
.home-image-content {
background-image: url(images/background1.jpeg);
background-repeat: no-repeat;
background-size: 100% 125%;
height: 750px;
width: 100%;
opacity: 50%;
}
.home-text-content h3 {
color: black;
text-align: center;
font-size: 35px;
margin: center;
font-family: "Indie Flower", cursive;
font-family: "Patrick Hand", cursive;
font-family: "McLaren", cursive;
}
.home-text-content h2 {
color: black;
text-align: center;
font-size: 55px;
margin-top: 0;
font-family: "Indie Flower", cursive;
font-family: "Patrick Hand", cursive;
font-family: "McLaren", cursive;
}
.container-edu {
box-sizing: content-box;
width: 1000px;
height: 100px;
padding: 10px;
border: 10px solid maroon;
margin-top: 0;
}
h4 {
color: black;
text-align: left;
font-size: 20px;
margin-top: 0%;
font-family: "Indie Flower", cursive;
font-family: "Patrick Hand", cursive;
font-family: "McLaren", cursive;
}
p {
color: black;
text-align: left;
font-size: 15px;
margin-top: 0%;
margin-bottom: 5%;
font-family: "Indie Flower", cursive;
font-family: "Patrick Hand", cursive;
font-family: "McLaren", cursive;
}
.container-working {
display: flex;
flex-direction: column;
align-self: flex-end;
box-sizing: content-box;
width: 1000px;
height: 100px;
padding: 10px;
border: 10px solid black;
margin-right: 10%;
margin-top: 1%;
margin-bottom: 1%;
}
.container-com {
box-sizing: content-box;
width: 1000px;
height: 100px;
padding: 10px;
border: 10px solid maroon;
}
.footer h3 {
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 20px;
width: 100%;
}