-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
112 lines (95 loc) · 1.76 KB
/
styles.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
body {
height: 100%;
width: 100%;
margin: 0;
display: table;
}
h2 {
text-align: center;
padding: 10px;
}
/* Footer with contact information */
#footer {
text-align: center;
background-color: #add8e6;
display: table-row;
height: 0;
}
/* When hovering over links, make the text bold and underline it */
.navbar-brand:hover {
font-weight: bold;
text-decoration: underline;
}
/* Text with my general information at the home page */
.general_info {
margin: 20px;
width: 60%;
}
.general_text {
padding: 10px;
font-size: 16px;
}
/* Title of home page */
.display-4 {
font-weight: bold;
}
/* Image to the right in the home page */
.image_right {
margin: 30px;
float: right;
width: 35%;
}
/* Buttons and divisions with my hobbies */
#buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
#buttons > div {
border-style: solid;
border-color: #9f9f9f;
border-width: 10px;
background-color: #67d863;
width: 300px;
padding: 30px;
margin: 20px;
border-radius: 25px;
}
/* Buttons to toggle information */
.toggle_button {
border-radius: 10px;
background-color: #79e6e7;
font-size: 25px;
margin: 10px;
}
.toggle_information {
font-size: 18px;
}
/* Slideshow with my interests */
.carousel-inner {
width: 60%;
height: 40%;
margin: auto;
margin-bottom: 50px;
}
.carousel > a {
background-color: #d3d3d3;
}
.interest_text {
padding-right: 70px;
padding-left: 70px;
padding-bottom: 30px;
}
.row {
margin: 40px;
}
#suggestions {
background-color: #e77979;
color: #ffffff;
padding: 10px;
border-radius: 10px;
margin: auto;
margin-bottom: 20px;
width: 290px;
}