-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
133 lines (113 loc) · 2.03 KB
/
style.css
File metadata and controls
133 lines (113 loc) · 2.03 KB
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
130
131
132
133
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body, html{
height: 100%;
width: 100%;
background-color: #ccebe9;
}
nav{
height: 10vh;
background-color: white;
margin: 2vh;
padding: 0 2vw;
display: flex;
align-items: center;
justify-content: space-between;
border-radius: 10px;
}
nav h1{
font-size: 2vw;
font-weight: bold;
}
nav h1 a{
text-decoration: none;
color: #1d7a63;
}
nav ul{
list-style-type: none;
display: flex;
align-items: center;
gap: 2vw;
}
nav ul li a{
text-decoration: none;
color: black;
padding-bottom: 1vh;
}
nav ul li a:hover{
color: #1d7a63;
font-weight: 600;
border-bottom: 2px solid red;
}
@media (max-width:765px){
nav{
padding: 0 5vw;
}
nav h1{
font-size: 5vw;
}
nav ul li{
font-size: 3vw;
}
}
.stopwatchSection{
height: 80vh;
/* background-color: #fefefe; */
display: flex;
justify-content: center;
align-items: center;
}
.stopwatchpart{
background-color: #1d7a63;
padding: 3vw 5vw;
border-radius: 20px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
gap: 2vw;
}
.stopwatchpart h2{
font-size: 3vw;
color: white;
text-transform: uppercase;
}
.stopwatchpart p{
font-size: 2vw;
color: white;
}
.btn button{
background-color: #ccebe9;
border-radius: 20px;
padding: 1.5vh 2vh;
border: 1px solid white;
margin: 1vw;
font-weight: 600;
}
@media (max-width:765px) {
.stopwatchpart{
padding: 10vw 10vw;
border-radius: 10px;
gap: 3vw;
}
.stopwatchpart h2{
font-size: 7vw;
}
.stopwatchpart p{
font-size: 5vw;
color: #fefefe;
}
.stopwatchpart button{
font-size: 3vw;
padding: 1vh 4vw;
}
}
.btn button:hover{
background-color: white;
border: 2px dotted red;
color: black;
}