-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2style.css
66 lines (54 loc) · 1.08 KB
/
2style.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
*{
margin: 0;
padding: 2px;
box-sizing: border-box;
text-align: center;
}
html,body{
width: 100%;
height: 100%;
max-width: fit-content;
background-color: black;
margin-top: auto;
margin-right: 1cm;
margin-left: 1cm;
}
h1{
color: rgb(216, 241, 134);
font-style: italic;
text-shadow: 2px 2px red;
}
p{
color: white;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
h2{
color: rgb(224, 212, 142);
text-transform: uppercase;
}
h3{
color: rgb(225, 163, 225);
text-transform: uppercase;
transform-style: preserve-3d;
}
p{
color: white;
padding-inline: 1cm;
font-family: 'Courier New', Courier, monospace;
}
#x{
text-align: center;
border: 3px solid green;
}
pre{
color: rgb(255, 255, 255);
font-family: 'Courier New', Courier, monospace;
}
#t{
font-family: 'Courier New', Courier, monospace;
font-size: larger;
}
#o{
border: 3px solid green;
text-align: center;
}