-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
79 lines (73 loc) · 1.62 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Roboto:ital,wght@1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@1,300&display=swap');
*{
margin: 0%;
padding: 0%;
}
body{
background-color: #E5E0FF;
text-align: center;
height: 100%;
justify-content: center;
align-items: center;
}
.header{
justify-content: center;
align-items: center;
text-align: center;
font-size: 1.5vw;
background-color: #FFD4D4;
color: rgb(66, 3, 69);
padding: 5px;
height: 4vw;
}
.text{
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: large;
margin: 20px;
padding: 20px;
}
textarea{
width: 60vw;
box-shadow: #3b3b3b;
height: 2/5fr;
margin: 20px;
border: 3px solid rgb(34, 34, 34);
border-radius: 15px;
padding: 10px;
font-size: larger;
}
input[type="submit"]{
width: 200px;
height: 50px;
font-size: large;
padding: 2px;
background-color:#7286D3;
color: rgb(242, 242, 242);
font-weight: bold;
border-radius: 15px;
box-shadow: #3b3b3b;
}
input[type="submit"]:hover{
background-color: rgb(189, 185, 185);
color:#3b3b3b;
}
#font_styles{
width: 30vw;
height: 30px;
font-size: large;
border: 2px solid rgb(40, 39, 39);
color: #3b3b3b;
font-weight: bold;
}
footer{
left: 0;
bottom: 0;
width: 100%;
background-color: #FFD4D4;
color: black;
text-align: center;
padding: 10px 0;
font-weight: bold;
}