-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (71 loc) · 1.12 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
*{
padding: 0;
margin: 0;
}
h1{
visibility: hidden;
height: 0;
}
.text{
display: flex;
flex-direction: column-reverse;
}
body{
background-color: #63DF41;
}
p{
color: #FFFFE0;
text-align:center;
padding-top: 0;
margin-top: 0;
}
p:nth-child(1){
padding-bottom: 2vh;
padding-top: 1vh;
}
a{
font-size: 2em;
color: green;
}
a:hover{
text-shadow: 1px 1px black;
}
a:visited{
color: darkgreen;
text-decoration: underline;
}
img{
display: block;
margin-left: auto;
margin-right: auto;
max-width: 60vw;
height: auto;
}
@media (min-width: 600px){
h1{
visibility: visible;
text-align: center;
padding:auto;
margin:auto;
padding-bottom: 1.5em;
}
.text{
flex-direction: column;
}
a{
font-size: 1em;
padding-bottom: 1em;
}
p:nth-child(1){
padding:auto;
padding-top: 0.75em;
padding-bottom: 0.5em;
margin:auto;
}
img{
display: block;
margin-left: auto;
margin-right: auto;
max-height: 70vh;
}
}