-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (116 loc) · 2.14 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
122
123
124
125
126
127
128
129
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
label {
display: none
}
body {
font-family: 'Comfortaa', sans-serif;
background-color: #202020;
text-align: center;
font-size: 2vw;
}
ul {
list-style-type: none;
margin-right: 3%;
}
li {
list-style-type: none text-align: center;
border-radius: 10px;
padding: 10px;
margin-bottom: 30px;
border: 1px solid black;
border: inset 1px solid #333;
-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
color: rgb(78, 11, 43);
}
form {
border-radius: 10px;
padding: 10px;
}
#form-title {
color: rgb(78, 11, 43);
width: 80%;
}
input[type="message"] {
display: inline-block;
margin: 0 auto;
height: 8vw;
font-size: 5vw;
appearance: none;
border-radius: 100px;
padding-left: 3vw;
}
input[type="message"]:focus {
border: 2px solid grey:;
}
input[type="submit"] {
display: block;
margin: 2vw auto;
width: 11vw;
height: 5vw;
font-size: 2.5vw;
font-family: Comfortaa;
background-color: rgb(242, 203, 239);
border-radius: 5px;
}
button {
background-color: #FF4E50;
border: none;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 2vw;
border-radius: 7%;
margin-right: 2vw;
padding: 1vw 1vw;
}
h1 {
color: #FC913A;
font-family: Comfortaa, sans-serif;
font-size: 10vw;
margin: 2vw auto 0;
}
h2 {
color: #FC913A;
font-family: Comfortaa, sans-serif;
font-size: 2.5vw;
margin: 2vw auto;
}
li {
background-color: #E1F5C4;
transition: 4s;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
}
li input {
/*display: inline-block;*/
/*position: relative;*/
margin-left: 2vw;
/*-webkit-appearance:none;*/
width: 3vw;
height: 3vw;
background: #F9D423;
border-radius: 5px;
border: 2px solid #555;
}
@media screen and (max-width: 480px) {
body {
font-size: 4vw;
}
h2 {
font-size: 3.5vw;
}
input[type="submit"] {
width: 18vw;
height: 6vw;
font-size: 3.5vw;
}
}