-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (53 loc) · 846 Bytes
/
Copy pathstyle.css
File metadata and controls
70 lines (53 loc) · 846 Bytes
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
* {
box-sizing: border-box;
}
body {
font-size: .8em;
width: 100%;
margin: 0 auto;
letter-spacing: 0.5px;
font-family: helvetica;
background: url(background.jpg) no-repeat center center fixed;
}
h1 {
text-align: center;
font: helvetica;
}
hr {
border-top: 1px solid black;
}
#container {
padding: 4.5em;
margin-top: 10rem;
background-color: beige;
border-radius: 10px;
box-shadow: 10px 10px 15px #000000;
}
div {
line-height: 2.5em;
}
input[type="text"]{
font-size: 1.5em;
text-align: center;
}
label, input {
width: 100%;
}
@media(min-width: 700px) {
body{
width: 60%;
background: url(background.jpg) no-repeat center center fixed;
background-size: cover;
margin-top: 20px;
}
#container {
opacity: 0.9;
}
label, input {
display: inline-block;
width: 40%;
}
div {
line-height: 4em;
}
}