-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (66 loc) · 1.25 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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
.container{
max-width: 80%;
padding: 30px;
margin: auto;
margin-top: 2px;
}
.container h2{
color: rgb(245, 247, 241);
font-size: 42px;
text-shadow: 3px 2px black;
text-align: center;
font-family: 'Roboto', sans-serif;
}
.up{
font-size: 15px;
font-style: oblique;
text-shadow: 0.5px 0.5px rgb(87, 87, 87);
color: rgb(13, 62, 63);
text-align: center;
font-size: 16px;
font-weight: bold ;
font-family: 'Roboto', sans-serif;
}
input,textarea{
display: block;
width: 80%;
border:2px solid black;
border-radius: 12px;
margin: 10px auto;
padding: 7px;
font-size: 16px;
outline:none;
}
form{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.btn{
font-size: 15px;
border:2px solid white;
padding: 5px 10px;
border-radius: 5px;
color: white;
background-color:purple;
cursor: pointer;
}
.bg{
width: 100%;
position: absolute;
z-index: -1;
opacity: 0.9;
}
.thanks{
font-size: 18px;
background-color: rgb(201, 233, 252);
font-family: monospace;
text-align: center;
font-weight: 700;
}