forked from cs4241-22a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyling.css
More file actions
105 lines (78 loc) · 1.59 KB
/
styling.css
File metadata and controls
105 lines (78 loc) · 1.59 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
105
/*Varela Round and Roboto*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;500&family=Varela+Round&display=swap');
*{
padding: 0px;
margin: 0px;
color:#000000;
font-family: 'Roboto', sans-serif;
}
.html{
height: 100%;
width: 100%;
}
body{
display: grid;
grid-template-rows: auto 1fr auto;
height: 100%;
width: 100%;
}
header{
display: grid;
grid-template-rows: 1fr 1fr;
position: relative;
}
.topTitle{
min-height: fit-content;
font-family: 'Varela Round', sans-serif;
font-size: 24px;
background-color: #FFFFFF ;
color: #08415C;
vertical-align: top;
padding-top: 1%;
border-bottom: 1px solid;
border-color: #000000;
}
.navBar{
list-style-type: none;
display: flex;
justify-content: center;
max-height: fit-content;
width: 100%;
background-color: #6774EF;
text-align: center;
}
.navLink{
font-size: 14px;
text-align: center;
vertical-align: middle;
text-decoration:none;
color: #FFFFFF;
margin-inline: 0.5%;
padding: 0.5% 0.5% 0.15% 0.5%;
}
a:link, a:visited{
color: #101010;
text-decoration: none;
font-family: 'Varela Round', sans-serif;
font-size: medium;
}
.navLink:hover, .navLink:hover a{
background-color: #08415C;
color: #FFFFFF;
}
footer{
margin-top: auto;
padding-top: 3%;
padding-bottom: 1%;
background-color: #91B3FC;
width: 100%;
min-height: fit-content;
}
main{
width: 90%;
margin: auto;
padding-bottom: 4%;
}
h5{
font-weight: normal;
}