-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathApp.css
More file actions
144 lines (128 loc) · 2.77 KB
/
Copy pathApp.css
File metadata and controls
144 lines (128 loc) · 2.77 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
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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@keyframes backgroundDrift {
0% { background-position-y: 100%; }
100% { background-position-y: -100%; }
}
body {
animation: 120s linear infinite backgroundDrift;
background-color: rgb(38, 56, 56);
background-size: 15px 15px, 45px 45px;
background-image:
linear-gradient(to bottom, transparent 5px, rgb(38, 56, 56) 5px),
linear-gradient(to right, rgb(149, 241, 253) 1px, transparent 1px),
linear-gradient(to right, transparent 5px, rgb(38, 56, 56) 5px),
linear-gradient(to bottom, rgb(149, 241, 253)1px, transparent 1px);
font-family: 'Ubuntu', sans-serif;
color: white;
padding: 4em;
}
a {
text-decoration: none;
color: aliceblue;
}
button {
font-family: 'Ubuntu', sans-serif;
text-decoration: none;
color: aliceblue;
font-size: 1em;
}
.highlighted-link a:hover {
color:rgb(202, 203, 243);
}
.text-module {
background-color: rgb(75, 0, 125);
margin-top: 1.5em;
border-radius: 10px;
box-shadow: inset 0 0 20px #00f8aa;
border-bottom: 2px solid white;
border-left: 1px solid white;
}
.text-module p {
padding: 0.5em;
padding-left: 0.75em;
padding-right: 0.75em;
}
.text-module.boilerplate{
padding-top: 0.5em;
}
.module-button {
float: right;
color: black;
background-color: rgb(168, 170, 173);
border-color: #8562ee #f8c5fa #f8c5fa #8562ee ;
text-align: center;
border-width: 3px;
border-radius: 5px;
font-size: medium;
font-weight: bold;
height: 28px;
width: 28px;
margin-right: 0.2em;
}
.page-title {
display: flex;
width:100%;
height: 30px;
align-items: center;
flex-direction: row;
justify-content: space-between;
background-color: rgb(61, 11, 107);
border-radius: 5px;
padding-bottom: 2em;
color: black;
box-shadow: inset 0 0 20px #00f8aa;
border-bottom: 2px solid white;
border-left: 1px solid white;
}
h2, h3, h4 {
padding-left: 1em;
}
.window-title {
display: flex;
height: 30px;
align-items: center;
flex-direction: row;
justify-content: space-between;
background-color: rgb(202, 203, 243);
width: 100%;
color: black;
border-radius: 5px 5px 0 0;
box-shadow: inset 0px 5px 10px 0px #686dfa;
}
.graph-container {
background-color: rgb(75, 0, 125);
margin-top: 1.5em;
border-radius: 10px;
box-shadow: inset 0 0 20px #00f8aa;
padding-top: 1em;
padding-bottom: 1em;
overflow: visible;
margin-left: auto;
margin-right: auto;
}
.no-border {
box-shadow: none;
}
@media screen and (max-width: 1000px) {
body {
padding: 2em
}
}
@media screen and (max-width: 650px) {
body {
padding: 0;
margin: 0;
}
.page-content {
padding: 2em
}
}
@media screen and (max-width: 450px) {
body {
padding: 0;
margin: 0;
}
.page-content {
padding: 1em
}
}