-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (89 loc) · 1.19 KB
/
Copy pathstyle.css
File metadata and controls
89 lines (89 loc) · 1.19 KB
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
/* style.css */
@import url("https://fonts.googleapis.com/css?family=Homenaje");
*:before,
*:after,
* {
box-sizing: border-box;
}
* {
margin: 0;
padding: 0;
}
html,
body,
#main {
height: 100%;
width: 100%;
}
body {
background: #fff;
}
body,
input,
button {
font-size: 1.5em;
font-family: 'Homenaje', sans-serif;
color: #4a4a4a;
}
input,
textarea,
button {
display: block;
margin: 10px auto;
width: 80%;
border: 3px solid #4a4a4a;
border-radius: 5px;
background-color: #fff;
}
input:focus,
textarea:focus,
button:focus {
outline: none;
}
input,
button {
height: 2em;
text-align: center;
}
textarea {
max-width: 80%;
font-size: 1.5em;
font-family: 'Homenaje', sans-serif;
color: #4a4a4a;
}
button {
transition-duration: 0.5s;
}
button:hover {
background: #4a4a4a;
color: #fff;
}
.hidden {
display: none;
opacity: 0;
}
#logo img {
height: 200px;
width: 200px;
display: block;
margin: 20px auto;
}
#title {
text-align: center;
}
#popup {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255,255,255,0.9);
}
#close {
position: fixed;
top: 10px;
right: 10px;
color: #f00;
font-size: 1.5em;
text-decoration: none;
}