-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
92 lines (76 loc) · 1.27 KB
/
styles.css
File metadata and controls
92 lines (76 loc) · 1.27 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
90
91
92
/* You can add global styles to this file, and also import other style files */
html, body {
font-size: 10px;
}
body {
font-family: 'Bellefair', serif;
margin: 0;
background: #1A0040;
}
img {
width: 100%;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
h1, h2, h3, p {
font-family: Arial;
font-size: 1.5rem;
}
form {
padding: 10px;
}
label {
display: block;
font-family: Arial;
font-size: 1.2rem;
margin: 10px 0;
}
.pulse {
animation: mymove 0.5s 8;
}
@keyframes mymove {
0% {transform: scale(1);}
50% {transform: scale(1.2);}
100% {transform: scale(1);}
}
.form-group {
padding: 10px;
position: relative;
float: left;
}
input[type="text"] {
box-sizing: border-box;
height: 50px;
width: 180px;
border: 1px solid rgba(51, 51, 51, 0.5);
border-radius: 2px;
padding: 5px;
}
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
.clearfix {
display: inline-block;
}
/* start commented backslash hack \*/
* html .clearfix {
height: 1%;
}
.clearfix {
display: block;
}
.btn {
border-radius: 2px;
display: block;
width: 80px;
padding: 10px;
font-size: 1.3rem;
}