-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (89 loc) · 1.8 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
hr {
border-style: none;
border-top-style: ridge;
border-color: #410168;
border-width: 4px;
width: 100%;
}
h1 {
font-style: normal;
color: rgb(253, 254, 254);
background-color: #9a03f7;
border-radius: 20px;
padding: 10px 15px;
}
h3 {
font-style: normal;
color: rgb(253, 254, 254);
background-color: #9a03f7;
border-radius: 20px;
padding: 10px 15px;
}
#main{
font-style: normal;
}
footer {
font-family: 'Courier New', Courier, monospace;
font-style: normal;
text-align: center;
font-weight: lighter;
border-radius: 20px;
padding: 10px 15px;
background-color: #9a03f7;
color: rgb(254, 254, 254);
}
body {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-style: normal;
background-image: url(https://wallpaperaccess.com/full/809182.jpg);
}
nav {
display: flex;
gap: 0.5rem;
}
#name {
flex: 1;
background-color:#9a03f7;
color: #fff;
border: 1px solid;
padding: 0.5rem;
text-align: center;
text-decoration: none;
transition: all 0.5s ease-out;
border-radius: 20px;
}
#name:hover,
#name:focus {
background-color: #fff;
color: #9a03f7;
}
label {
display: block;
margin-top: .5em;
}
input{
border-radius: 10px;
}
input:focus {
background-color: #9a03f7;
border-radius: 10px;
}
textarea{
border-radius: 10px;
}
textarea:focus {
background-color: #9a03f7;
border-radius: 10px;
}
button {
background-color: #fff;
border-radius: 10px;
}
button:hover {
background-color: #9a03f7;
border-radius: 10px;
}
button:focus {
background-color: #01b11b;
border-radius: 10px;
}