-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (81 loc) · 1.62 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
div {
width: 450px;
height: 500px;
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
background-image: url("/Users/ashwingupta/Desktop/ESL_research/logos/style-tile-textured-background-3221-bw.jpg");
background-size: cover;
width: 100%;
}
.sample-header {
position: fixed;
bottom: 100%;
width: 100%;
height: 40%;
background-image: url("/Users/ashwingupta/eclipse-workspace/NutriApp-Feedback-Website/logos/goldmaryland-flag-header-1280x180-gold.jpeg");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
opacity: 60%;
}
.logo{
display:block;
width:175px;
height:125px;
background:url(/Users/ashwingupta/eclipse-workspace/NutriApp-Feedback-Website/logos/UMBC.jpeg) center no-repeat;
opacity: 100%;
background-size:cover;
}
* {
box-sizing: border-box;
}
body {
display: flex;
justify-content: left;
}
.label{
font-size: 16px;
font-family: "Arial";
width: 25%;
border: 2px solid black;
padding: 8px;
}
.flex{
display: flex;
justify-content: flex-start;
gap: 4px;
}
.title{
font-size: 26px;
margin: 4px 0;
text-align: justify;
}
.big-divider{
border-top: 14px solid #000;
}
.small-divider{
border-top: 6px solid #000;
}
.xsmall-divider{
border-top: 3px solid #000;
}
.small-font{
font-size: 12px;
}
.bold{
font-weight: bold;
}
summary {
cursor: pointer;
font-weight: bold;
}
summary::-webkit-details-marker {
display: none;
}
.content div{
padding: 0 10px;
}