-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (99 loc) · 1.69 KB
/
Copy pathstyle.css
File metadata and controls
115 lines (99 loc) · 1.69 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
106
107
108
109
110
111
112
113
114
115
body {
padding:0;
margin:0;
font-family: 'Roboto', sans-serif;
font-weight: bold;
background: #095a9d;
color:#696969;
}
.jumbo {
display: flex;
font-size: 2em;
height: 80vh;
}
.content-jumbo {
display:flex;
align-items: center;
justify-content: center;
width: 50%;
background-color: white;
}
.block {
display: block;
padding:50px;
font-size: 0.8em;
}
ul {
list-style: none;
}
li {
text-align: center;
margin-bottom: 50px;
font-size: 1.3em;
}
.collapsible {
background-color: #095a9d;
color: white;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: center;
outline: none;
font-size: 3em;
}
.active, .collapsible:hover {
background-color: #1fbcfd;
color:#696969;
}
.container {
height: 85vh;
}
.content {
padding: 0 150px;
display: none;
overflow: hidden;
background-color: #f1f1f1;
}
h1, h2 {
text-align: center;
margin:30px 0 30px 0;
}
h1 {
font-size: 4em;
color:#1fbcfd;
}
h2 {
padding-top: 50px;
font-size:3em;
color: white;
}
h4 {
text-decoration: underline;
color: #095a9d;
}
p {
text-align: justify;
padding:5px;
}
.construct {
display: flex;
justify-content: center;
align-items: center;
margin-top:30px;
height: 35vh;
background-color: #1fbcfd;
font-size: 1.2em;
}
.content li {
text-align: center;
margin-bottom: 50px;
font-size: 1.3em;
}
a {
text-decoration: none;
color: #1fbcfd;
}
span {
color:red;
}