-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (72 loc) · 2.11 KB
/
style.css
File metadata and controls
106 lines (72 loc) · 2.11 KB
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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,500;1,500&display=swap');
body {font-family: 'Open Sans', sans-serif;
margin:0px,auto ; }
:root{
--primary-color: #66d3b8;}
.hr{padding: 2rem 0rem;}
.container-fluid {padding-left: 0.5rem;
padding-right: 0.5rem;}
.container-center { max-width: 600px;
margin:auto;
}
.link-primary-link { max-width: 140px;
padding: 0.6rem 1.2rem;
background-color: var(--primary-color);
color: #fff;
margin: 1rem auto;
border-radius: 2rem;
text-decoration: none;
}
.link-secondary-link{ max-width: 140px;
margin: 1rem;
padding: 0.6rem 1.2rem;
border-radius: 2rem;
border: 1px solid var(--primary-color);
color: var(--primary-color);
text-decoration: none;}
.list-non-bullet{list-style: none;}
.inline-list{display: inline; padding: 0rem;}
.navigation{background-color: var(--primary-color);
border-bottom-left-radius: 2rem;
padding: 1rem;
font-size: x-large;
}
.navigation .link{color: white; text-decoration: none;
}
.navigation .nav-pills{text-align: right; box-sizing: border-box; }
.nav-header{font-weight: bolder;font-size: x-large; }
.navigation .link-active{font-weight: bold;}
.header div{text-align: center;font-size: larger;
font-weight:bolder;
text-align: center;}
header{padding: 2rem; font-size: x-large;}
.header-img{
padding: 1rem;
max-width: 350px;
display: block;
margin: auto;}
.header-name{font-size: larger;
font-weight:bolder;
text-align: center;
}
.section{font-size: large;
padding: 2rem;
text-align: center;}
.section h2,h3{text-align: center;}
.section-grey{background-color:whitesmoke;
font-size: large;
padding: 2rem;
border-radius: 2rem;
text-align: center;}
.section-grey h2,h3{text-align: center;}
.footer{background-color: var(--primary-color);
color: rgb(14, 13, 13);
text-align: center;
padding: 2rem 1rem;
border-top-right-radius: 2rem;
}
.footer .footer-link{color:black;
text-decoration: none;
font-size: large;}
.footer ul.list-non-bullet {padding-inline-start: 0px;}
.footer-header{font-weight: bold; font-size: larger;}