-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
69 lines (59 loc) · 1.2 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
@import "https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css";
@import url('https://fonts.googleapis.com/css2?family=K2D&display=swap');
body {
font-family: 'K2D';
width: 50%;
margin-left: 25%;
display: block;
height: 500px;
}
* {
box-sizing: border-box;
}
#title {
font-size: 45px;
width: 100%;
text-align: center;
}
#description {
font-size: 24px;
text-align: center;
margin-bottom: 20px;
}
#survey-form {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
#name-label, #email-label, #number-label, #dropdown-label, #language-label, #p-language-label, #textarea-label {
font-size: 20px;
}
#name, #email, #number, #dropdown {
margin-top: 10px;
margin-bottom: 15px;
border: 2px solid black;
padding-left: 5px;
border-radius: 5px;
width: 200px;
background-color: transparent;
}
#language, #p_lang {
padding-top: 30px;
}
#radio, #checkbox {
margin-bottom: 15px;
}
#textarea {
margin-top: 10px;
margin-bottom: 15px;
padding-left: 10px;
}
#submit {
width: 100px;
height: 40px;
border:none;
padding: 0.3;
border-radius: 30px;
margin-bottom: 20px;
}