-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (66 loc) · 1.79 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
body {
margin: 0;
background-color: #000000;
opacity: 0.8;
background: repeating-linear-gradient(45deg, #070e2d, #070e2d 5px, #000000 5px, #000000 25px);
background-image: radial-gradient(circle, #92a8d1 10%, transparent 10%), radial-gradient(circle, #dbe2ef 10%, transparent 10%);
background-size: 30px 30px;
background-position: 0 0, 15px 15px;
background-color: #c0d4fa;
text-align: center;
font-family: 'Arvo', serif;
}
/* General style for .click-info inside .info of various IDs, hence the <div class="info" id="Blue-info"> */
#Blue .click-info,
#Dehma .click-info,
#Dan .click-info,
#Ash .click-info,
#Me .click-info,
#Scuffy .click-info,
#Freq .click-info,
#CJ .click-info,
#Early .click-info,
#Noriszetig .click-info,
#Geek .click-info {
font-size: 14px;
color: gray;
}
a {
color: red;
text-decoration: none;
}
/* Changes how the text styles, etc. under the titles */
p {
font-size: 16px;
line-height: 1.6;
border: 1px solid black;
padding: 10px;
color: #000000;
margin: 10px;
}
/* Hovering on the Titles changes the cursor */
.clickable {
cursor: pointer;
border: 1px solid #D6E4F0;
border-radius: 5px;
padding: 8px;
background-color: #92a8d1;
color: white;
font-size: 24px;
text-align: center;
transition: transform 0.2s ease, background-color 0.3s ease; /* Combined transitions */
}
.clickable:hover {
background-color: #dbe2ef;
transform: translateY(-3px); /* Adjusted the translate value */
}
.info {
overflow: hidden;
max-height: 0;
transition: max-height 0.5s ease-in-out;
background-color: #92a8d1;
border: 1px solid #92a8d1;
border-radius: 5px;
margin: 10px;
font-size: 14px;
}