forked from chaotic-aur/chaotic-aur.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (84 loc) · 1.55 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
* {
padding: 0;
margin: 0;
font-family: 'Roboto', sans-serif;
}
body{
background-color: black;
background: fixed linear-gradient( 135deg,rgb(12, 0, 45) 90%,indigo);
color: aliceblue;
padding: 1em;
}
h1{
font-size: 2.5rem;
font-weight: 700;
}
h2 {
margin: 1em 0;
text-decoration: underline;
}
h2:first-child {
margin-top: 0;
}
h3 {
font-weight: 500;
}
h1 ,h2 ,p {
text-align: center;
}
.list:first-of-type p {
text-align: left;
}
.list{
display: block;
margin: 2rem auto;
padding: 2rem;
max-width: 75ch;/*this make so that reading is more comfortable*/
border: 0;
border-radius: 2em;
background-color: rgb(12, 0, 45);
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
transition: box-shadow 0.25s ease-in-out;
}
.list:hover{
box-shadow: -2px -2px 5px 1px purple, 2px 2px 5px 1px rgb(55, 55, 235);
}
code{
color: orangered;
font-size: 1.1rem;
line-height: 2.2rem;
font-weight: 500;
background-color: #304;
padding : 0 0.2rem ;
letter-spacing: 0.09rem;
border-radius: 0.2em;
}
.command::before{
content: "#";
}
a{
color: white;
text-decoration: none;
font-weight: 700;
font-size: 1rem;
}
li{
margin: 0.5rem;
}
span {
display: flex;
justify-content: center;
align-items: center;
margin: 0.4em;
}
@media screen and (max-width: 600px) {
.list{
margin: 2rem 2vw; padding: 2vw;
}
html{
font-size: 13px;
}
code{
font-size: 1.05rem;
}
}