-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (68 loc) · 1 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
body {
background: #3c3958;
color: #ffe581;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
h1,
h2,
button,
select,
input {
font-family: 'Righteous', cursive;
}
button {
color: #ffe581;
border: 2px solid #ffe581;
border-radius: 5%;
background: none;
padding: 5px;
font-size: medium;
}
article {
display: flex;
flex-wrap: wrap;
}
article * {
margin-left: 5px;
margin-bottom: 5px;
}
select {
color: #ffe581;
border: 2px solid #ffe581;
border-radius: 5%;
background: none;
font-size: large;
}
option {
background: #3c3958;
}
button:hover {
color: #ffd52b;
border: 2px solid #ffd52b
}
button:active {
background: rgb(90, 87, 118);
}
#area {
border: 2px dotted;
}
ul {
list-style-type: none;
padding-left: 5px;
}
input {
margin-bottom: 10px;
}
header {
text-align: center;
}
div {
margin-top: 10px;
}
@media screen and (min-width: 500px) {
main,
header {
width: 80%;
margin: auto;
}
}