-
Notifications
You must be signed in to change notification settings - Fork 0
/
html.css
109 lines (91 loc) · 1.77 KB
/
html.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
* {
box-sizing: border-box;
}
body {
font-family: 'Ubuntu', sans-serif;
padding: 0px;
margin: 0px;
/* background-image: url(https://source.unsplash.com/1600x900/?nature,water); */
background-color: #ddd;
}
.navbar {
overflow: hidden;
background-color: #333;
font-size: 25px;
position: sticky;
top: 0px;
z-index: +1;
}
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none
}
.navbar a:hover {
background-color: #ddd;
color: #333;
}
.navbar a:active {
background-color: green;
color: #333;
}
.navbar a img {
width: 30px;
height: 30px;
padding-bottom: 0px;
}
#mainSection {
display: flex;
justify-content: space-evenly;
flex-direction: row;
}
.leftcolumn {
width: 67%;
/* border: 2px solid red; */
}
.rightcolumn {
width: 30%;
/* margin-left: 20px; */
/* align-items: center; */
padding-left: 20px;
}
.fakeimgAbout {
height: 150px;
padding: 20px;
margin-bottom: 20px;
background-color: gray;
}
.fakeimgAbout img {
height: 100%;
margin-left: 85px;
}
.card {
background-color: #f1f1f1;
padding: 20px;
margin-top: 20px;
}
.toolbar-item button {
cursor: pointer !important;
color: white !important;
border: 1px solid white !important;
border-radius: 15px !important;
padding: 5px 14px !important;
}
.container {
height: auto;
}
/* .row::after {
display: table;
content: "";
clear: both;
} */
/* .footer {
padding: 20px;
text-align: center;
background-color: #333;
margin-top: 20px;
color: #ddd;
} */