-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (51 loc) · 1.2 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
body {
background-color: #0B0B3B;
color: #f8f8f8;
margin: 0;
padding: 0;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
div {
width: 600px;
margin: 7em auto;
padding: 2em;
background-color: #595893;
border-radius: 0.5em;
box-shadow: 2px 3px 7px 2px rgba(0,0,0,0.02);
}
h1{
text-align: center;
}
h3{
text-align: center;
}
h2{
text-align: center;
}
a:link, a:visited {
color: #38488f;
text-decoration: none;
}
.curtain{
float: right;
text-align: center;
padding: 10px;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
.towel{
float: none;
text-align: center;
padding: 10px;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
margin:10px
}
@media (max-width: 700px) {
div {
margin: 0 auto;
width: auto;
}
}