-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
147 lines (120 loc) · 2.51 KB
/
stylesheet.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/* Body text modifications for padding */
body {
background-color: aliceblue;
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 10px;
margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 10px;
height: auto;
width: auto;
}
/* Consistency with headers with these modifications */
h1 {
padding: 0.5em auto auto auto;
border: 10px;
border-style: groove;
border-color: #DC143C;
border-radius: 1ch;
position: static;
text-align: center;
}
/* Modifying task section for ease of viewing */
#taskStuff {
display: grid;
align-self: start;
grid-auto-flow: row;
grid-auto-rows: min-content;
row-gap: 5px;
}
/* Ensuring brainstorming section appears in a cleanly divided way for users*/
#brainstormSection {
display: flex;
flex: content;
flex-flow: row;
flex-wrap: nowrap;
flex-basis: 0ch;
}
/* All captions and second headers centered */
#caption, h2 {
text-align: center;
}
img {
margin-left: auto;
margin-right: auto;
display: block;
width: 50%;
}
h2 {
font-size: 22px;
margin: 10px;
text-decoration: underline;
}
h3 {
margin: auto;
}
/* Makes strong text more visible on the page */
strong {
font-size: 2.05ch;
}
p {
padding-left: 1.5em;
}
div > p[id] {
color: blueviolet;
}
/* Ensure each section is clearly defined */
section {
border: 10px;
border-style: double;
border-color: hsl(180, 100%, 27%);
border-width: 1.2ch;
max-height: fit-content;
min-height: fit-content;
}
/* Ensures list formatting appears correctly with the specified margins */
ul li, ol li {
margin: 10px 10px 10px 10px;
}
footer {
text-decoration: overline;
text-align: center;
position: sticky;
bottom: 0px;
background-color: aliceblue;
}
summary:hover {
background-color: greenyellow;
}
button:active {
background-color: red;
}
/* On larger screens, when a user hovers over the button, color it green */
@media (min-width: 1000px) {
button:hover{
color: green;
}
}
/* Target the attendeesHeader class and ensure that the text is underlined */
.attendeesHeader {
text-decoration: underline;
}
* {
font-family: "Montserrat", sans-serif;
}
/* ol and p children of dividers after second headings should be colored purple (works for the brainstorming section) */
h2 ~ div > ol, p {
color: purple;
}
h2 + ul {
color:green
}
input:hover {
color: chocolate;
}
textarea {
display: none;
}