-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (79 loc) · 1.58 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*Heading and Body*/
body {
min-width:300px;
background: mistyrose;
}
h1 {
font-size: 32px;
font-family: 'fantasy', 'monospace', 'Franklin Gothic Medium';
color: maroon;
margin-top: 15px;
margin-bottom: 15px;
}
hr{
height: 8px;
margin-bottom: 25px;
background-color: black;
}
div{
text-align: center;
}
/*Buttons and Submit Input Type*/
.buttons, input[type = "submit"] {
background-color: red;
color: pink;
font-size: 32px;
font-family: 'fantasy', 'monospace', 'Franklin Gothic Medium';
text-decoration: none;
text-align: center;
border-radius: 2px;
border-style: ridge;
border-color: crimson;
cursor: pointer;
margin-bottom: 10px;
min-width: 200px;
min-height: 50px;
}
.buttons:hover {
background-color: pink;
color: red;
transition: .7s;
}
.buttons:active {
transform: scale(0.96);
transition: 0.01s;
}
.submitButton, .home, .reset {
font-size: 25px;
min-width: 125px;
min-height: 35px;
}
/*Input Text*/
input[type = "text"] {
width: 85px;
font-family: 'monospace';
}
#minNum {
margin-right: 50px;
}
/*Paragraphs, Labels, Span, and TextArea*/
label, p{
color: crimson;
font-family: 'fantasy', 'monospace', 'Franklin Gothic Medium';
font-size: 20px;
}
#minNumLabel{
margin-right: 60px;
}
#startingLetterLabel {
margin-right: 30px;
}
#errorMessage {
display: none;
}
span {
font-size: 45px;
font-weight: bold;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
letter-spacing: .04em;
}