-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
91 lines (88 loc) · 1.98 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
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
overflow-y: auto;
height: 100%;
background-color: rgb(57, 175, 175);
}
.major{
width: 80%;
margin: 2%;
padding: 2%;
background-color: beige;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
overflow-y: auto;
height: 100%;
}
.Report-Title{
font-weight: bolder;
text-align: center;
border: 3px solid black;
}
.Report-Subtitle{
font-weight: lighter;
text-align:end
}
.Abstract, .Contents, .Problem_Statement, .Objectives, .Flowchart, .Methodology,
.Insights, .Conclusion, .Bonus{
padding: 4px;
border: 3px solid black;
margin: 30px;
}
.Abstract-Title, .Contents-Title, .Problem_Statement-Title,
.Objectives-Title, .Flowchart-Title, .Methodology-Title, .Insights-Title, .Conclusion-Title, .Bonus-Title{
text-decoration: underline 2px solid black;
text-align: center;
font-size: 30px;
}
.Abstract-Content, .Contents-Content, .Problem_Statement-Content, .Objectives-Content,
.Flowchart-Content, .Methodology-Content, .Conclusion-Content, .Insights-Content, .Bonus-Content{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: bold;
margin: 3px;
padding: 3px;
}
.Tableau-Description{
border: 4px dotted black;
background-color: white;
padding: 3px;
margin: 3px ;
}
.cont:hover{
color: red;
background-color: rgba(49, 4, 4, 0.139);
border-radius: 20%;
}
.Contents-Content, .Objectives-Content{
line-height: 40px;
padding-left: 20px;
margin-left: 10px;
}
img{
width: 65%;
height: 400px;
margin-left: 160px;
}
.star-bullet::before{
content: '★';
color: gold;
margin-right: 10px;
}
.navbar {
display: flex;
align-items: end;
padding: 10px;
}
.navbar-items{
justify-content: center;
width: 20px;
height: 20px;
list-style-type: none;
}
.navbar-ul{
list-style-type: none;
margin: 0;
padding: 0;
}