-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (62 loc) · 1.33 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
body {
font-family: 'Courier New', Courier, monospace;
background-color: #abfc7f;
text-align: center;
}
h2 {
color: black;
font-size: 0.8rem;
margin-top: 50px;
margin-bottom: 30px;
margin-left: 10%;
margin-right: 10%;
}
.container {
max-width: 400px;
margin: 0 auto;
padding: 80px;
background-color: #6075fe;
border-radius: 8px;
box-shadow: 0 0 10px white;
font-family: 'Courier New', Courier, monospace;
color: #fff;
}
h1 {
color: white;
font-size: 1.2rem;
}
input[type="text"] {
width: 100%;
padding: 10px;
margin: 10px 0;
font-family: 'Courier New', Courier, monospace;
color: #fff;
}
button {
background-color: rgb(255, 229, 101);
color: black;
padding: 7px 10px;
cursor: pointer;
font-family: 'Courier New', Courier, monospace;
border-style: none;
}
button:hover {
background-color: #9fff6c;
}
#conjugationResult {
margin-top: 20px;
font-weight: bold;
}
select {
width: 100%;
padding: 10px;
margin: 10px 0;
font-family: 'Courier New', Courier, monospace;
color: #fff;
background-color: #6075fe;
border: 3px solid #fff;
}
option {
font-family: 'Courier New', Courier, monospace;
color: #fff;
}