-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
97 lines (83 loc) · 1.36 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
input:focus,
button:focus {
outline: none;
}
body {
margin: 0;
font-family: "Roboto";
font-weight: 300;
}
.content {
height: 100vh;
margin: 0;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
white-space: nowrap;
}
.wrapper {
padding: 50px;
border: 3px solid #9198e5;
border-radius: 20px;
display: inline-block;
}
.task {
margin-right: 50px;
display: flex;
flex-direction: column;
text-align: center;
}
.title {
margin-bottom: 30px;
font-family: "Roboto";
font-size: 34px;
}
input {
margin-bottom: 15px;
padding: 8px;
border: 1px solid #9198e5;
border-radius: 5px;
}
button {
width: 150px;
margin: 20px auto 0 auto;
padding: 10px 12px;
border: 2px solid #9198e5;
border-radius: 20px;
color: #9198e5;
background-color: #fff;
font-family: "Roboto Mono";
font-size: 16px;
}
button:hover {
cursor: pointer;
background: linear-gradient(120deg, #e66465, #9198e5, #d471dd);
color: #fff;
}
.answer {
position: relative;
}
.answer-item {
margin-bottom: 15px;
padding: 8px;
border-radius: 5px;
border: 1px solid #9198e5;
text-align: left;
font-family: "Roboto Mono";
}
span {
font-weight: 500;
}
@media (max-width: 800px) {
.content {
flex-direction: column;
}
.wrapper {
padding: 20px;
}
.task {
margin-right: 0;
margin-bottom: 50px;
}
}