-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (109 loc) · 2.17 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
:root {
--colorBody: #4FD1C5;
--colorBg: #f5f5f5;
--colorFont: #fff;
--colorBShadow: rgba(0, 0, 0, 0.171);
}
* {
box-sizing: border-box;
}
body {
background: var(--colorBody);
font: normal 15pt Arial;
}
header {
color: var(--colorFont);
text-align: center;
}
section {
background: var(--colorBg);
border-radius: 10px;
padding: 15px;
width: 500px;
margin: auto;
box-shadow: 5px 5px 10px var(--colorBShadow);
}
h1 {
text-transform: uppercase;
}
div {
text-align: center;
padding: 10px;
}
input {
background-color: white;
color: black;
border: 2px solid var(--colorBody);
padding: 6px 2px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 10px;
margin: 4px 2px;
}
select {
background-color: white;
color: black;
border: 2px solid var(--colorBody);
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
margin: 4px 2px;
}
img {
border-radius: 50%;
width: 150px;
height: 150px;
}
.button {
background-color: white;
color: black;
border: 2px solid var(--colorBody);
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
}
.button:hover {
background-color: var(--colorBody);
color: white;
}
footer {
color: var(--colorFont);
text-align: center;
font-style: italic;
font-size: 12px;
}
@media(max-width:538px) {
section {
background: var(--colorBg);
border-radius: 10px;
padding: 15px;
width: 250px;
margin: auto;
box-shadow: 5px 5px 10px var(--colorBShadow);
}
body {
background: var(--colorBody);
}
.button {
font-size: 20px;
}
select {
background-color: white;
color: black;
border: 2px solid var(--colorBody);
padding: 3px 3px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 15px;
margin: 4px 2px;
}
}