-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (89 loc) · 1.52 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
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
body {
font: 20px "Gill Sans", Verdana, sans-serif;
line-height: 1.8;
color: #000000;
background-color: #dcdcdc;
padding-top: 0px !important;
}
.textcontainer {
padding: 2% 10%;;
}
p {font-size: 16px;}
.margin {margin-bottom: 30px;}
a {
color: #000000;
}
.container-fluid {
padding: 0px;
/*padding-bottom: 70px;*/
}
nav {
background-color: #dcdcdc;
color: #EEE7E8;
padding: 50px 0px;
}
.navbar-nav {
display: flex;
justify-content: flex-start;
gap: 30px;
}
.nav-title{
margin-left: 15px;
margin-right: 15px;
color: #000000;
}
.nav-link {
border: 3px outset #a3a3a3;
border-radius: 20px;
padding: 10px 30px;
background-color: #a3a3a3;
color: #EEE7E8;
transition: 0.3s;
}
.nav-link:hover {
border: 3px outset #FFFFFF;
border-radius: 20px;
padding: 10px 30px;
background-color: #a3a3a3;
transition: 0.3s;
}
#btn {
border: 3px outset #FFFFFF;
border-radius: 40px;
padding: 10px 30px;
background-color: #a3a3a3;
color: #000000;
transition: 0.3s;
}
#btn:hover {
border: 3px inset #FFFFFF;
border-radius: 40px;
padding: 10px 30px;
background-color: #a3a3a3;
transition: 0.3s;
}
.row {
margin: auto auto;
}
.flexrow {
display: flex;
justify-content: space-evenly;
}
.center-row {
display: flex;
justify-content: center;
}
code {
background-color: #2d2b33;
color: #EEE7E8;
font-family: 'Courier New', Courier, monospace;
}
.caption {
color: gray;
font-size: 16px;
text-align: center;
font-style: italic;
}
#aboutme {
padding: 20px;
}