-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
105 lines (95 loc) · 1.59 KB
/
main.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
103
104
105
body{
background: #ffffff url(images/background.jpg) top left repeat;
}
h1{
color: #FFFFFF;
text-align:center;
font-weight: bold;
}
h2{
color: #FFFFFF;
text-align:center;
}
.wrapper{
text-align:center;
}
button {
position:relative;
font-family: cursive, verdana;
color: white;
font-size: 18px;
border-radius: 4px;
border-style: solid;
padding: 15px 32px 15px 32px;
margin:20px 20px 20px 20px;
text-align:center;
}
button:hover{
font-weight: bold;
}
.button1 {
background-color: #4CAF50;
} /* Green */
.button2 {
background-color: #008CBA;
} /* Blue */
.button3 {
background-color: #f44336;
} /* Red */
.button4 {
background-color: #555555;
} /* Black */
.button1:hover{
background-color: white;
color:#4CAF50;
}/* Green */
.button2:hover {
background-color: white;
color: #008CBA;
} /* Blue */
.button3:hover {
background-color: white;
color: #f44336;
} /* Red */
.button4:hover {
background-color: white;
color: #555555;
} /* Black */
label{
display: block;
text-align: center;
margin:20px auto 20px auto;
color: white;
font-weight: bold;
font-family: verdana;
font-size: 18px;
}
input{
display:block;
margin: 20px auto 0 auto;
text-align: center;
position: relative;
font-family: cursive, verdana;
}
input[type="text"] {
font-size: 70px;
width: 100px;
height:100px;
background-color:#f44336;
}
input[type="submit"] {
color: white;
font-size: 18px;
border-radius: 4px;
border-style: solid;
padding: 15px 32px 15px 32px;
}
input[type="submit"]:hover {
background-color: white;
font-weight: bold;
color: #008CBA;
}
.feedback {
text-align: center;
background: yellow;
}