-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
101 lines (86 loc) · 1.36 KB
/
styles.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
body {
background-color: #f7f3e9;
font-family: 'Arial', sans-serif;
color: #333;
margin: 0;
text-align: center;
}
.header {
background-color: #b22222;
padding: 20px;
color: #fff;
}
.header h1 {
margin: 0;
font-size: 2em;
color: #fff;
}
.header nav a {
color: #fff;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
.header nav a:hover {
color: #ffd700;
}
#rating-section, #top-movies {
margin: 20px auto;
width: 90%;
max-width: 600px;
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border: 3px solid #b22222;
}
h2 {
color: #b22222;
}
select, textarea, button {
width: 90%;
margin: 10px auto;
padding: 10px;
border-radius: 5px;
border: 2px solid #b22222;
font-size: 1em;
}
textarea {
resize: vertical;
}
button {
background-color: #b22222;
color: white;
font-weight: bold;
cursor: pointer;
}
button:hover {
background-color: #ffd700;
}
.snowflakes {
display: flex;
justify-content: center;
font-size: 2em;
color: white;
cursor: pointer;
margin: 10px 0;
}
.snowflakes span {
transition: color 0.3s;
}
.selected {
color: #ffd700;
}
#message {
color: green;
font-weight: bold;
margin-top: 10px;
}
footer {
background-color: #b22222;
color: white;
padding: 10px;
position: fixed;
width: 100%;
bottom: 0;
}