-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
121 lines (99 loc) · 2.2 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&family=Montserrat:wght@300&family=Neucha&family=Poppins:wght@100&display=swap');
{
font-family: 'IBM Plex Sans', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Neucha', cursive;
font-family: 'Poppins', sans-serif;
} */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
/* font-family: 'Montserrat', sans-serif; */
/* font-family: 'Roboto Condensed', sans-serif; */
/* font-family: 'Ubuntu', sans-serif; */
*{
margin: 0;
padding: 0;
color: azure;
}
body{
background-color:#1D1B26;
justify-content: center;
align-items: center;
height: 100%;
text-align: center;
}
.head{
justify-content: center;
align-items: center;
font-family:Georgia, 'Times New Roman', Times, serif;
text-align: center;
font-size: 1rem;
padding: 5px;
margin-bottom: 25px;
background-color: #f99984;
/* background-color: #00CFc8;
background-color: #fbd5e3;*/
}
input[type="submit"]{
color:black;
font-size: large;
padding: 2px;
height: 50px;
width: 200px;
font-weight: bold;
border-radius:15px;
margin-bottom: 10px;
}
input[type="submit"]:hover{
background-color: #f99984;
color:azure;
}
select,option{
color:black;
}
a{
text-decoration: none;
font-weight: bold;
}
a:hover{
color:azure;
}
textarea{
width: 60%;
box-shadow: azure;
height: 2/5fr;
margin: 20px;
border: 3px solid azure;
border-radius: 15px;
padding: 10px;
font-size: larger;
color:black;
}
#fonts{
width: 30vw;
height: 20px;
font-size:medium;
border: 2px solid azure;
color:black;
font-weight: bold;
}
footer{
left:0;
bottom:0;
width: 100%;
text-align:center;
background-color: #f99984;
color:black;
text-align: center;
padding: 10px 0;
font-weight: bold;
}
footer a{
color:black;
margin:0;
padding:0;
}
footer span{
color:black
}