-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
executable file
·110 lines (97 loc) · 1.85 KB
/
styles.css
File metadata and controls
executable file
·110 lines (97 loc) · 1.85 KB
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
106
107
108
109
110
body {
font-family: 'Arial', sans-serif;
background-color: #ffdddd;
margin: 0;
padding: 0;
}
h1 {
text-align: center;
color: #cc6666;
}
.letter-container {
width: 80%;
margin: 50px auto;
background-color: #fff;
border: 2px solid #cc6666;
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.post {
text-align: center;
font-size: 24px;
margin-top: 20px;
color: #cc6666;
}
form {
text-align: center;
}
input[type="text"] {
padding: 10px;
font-size: 16px;
border: 2px solid #cc6666;
border-radius: 5px;
outline: none;
}
button {
padding: 10px 20px;
background-color: #cc6666;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #ff9999;
}
#heartButton {
width: 50px;
height: 50px;
background-color: hwb(0 40% 20%);
color: #fff;
border: none;
border-radius: 50%;
font-size: 20px;
cursor: pointer;
transition: background-color 0.3s ease;
}
#heartButton:hover {
background-color: #ff9999;
}
#yes {
background-color: #00d100;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
display: inline-block;
}
#no {
background-color: #c30000;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
display: inline-block;
}
#runbutton {
position: absolute;
left: 50%;
background-color: rgb(29, 158, 29);
}
.heart {
position: relative;
background-color: transparent;
font-size: 50px;
color: red;
position: absolute;
opacity: 100%;
}